2001-03-16 22:47:14 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-16 22:47:14 +00:00
|
|
|
*
|
2006-05-19 19:29:19 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
FILE *bb_wfopen(const char *path, const char *mode)
|
2001-03-16 22:47:14 +00:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
if ((fp = fopen(path, mode)) == NULL) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg("%s", path);
|
2001-03-16 22:47:14 +00:00
|
|
|
errno = 0;
|
|
|
|
}
|
|
|
|
return fp;
|
|
|
|
}
|