aboutsummaryrefslogtreecommitdiff
path: root/libbb/wfopen.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-26 23:25:17 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-26 23:25:17 +0000
commit467f463615e7329b267abea02da9ed9cedd2382b (patch)
treef4f2aa58fa669aed6e2c50bb7aa648a79ec1873d /libbb/wfopen.c
parent6dc3a21627db11fa0f374afe29a6bbf4f89c8b64 (diff)
downloadbusybox-w32-467f463615e7329b267abea02da9ed9cedd2382b.tar.gz
busybox-w32-467f463615e7329b267abea02da9ed9cedd2382b.tar.bz2
busybox-w32-467f463615e7329b267abea02da9ed9cedd2382b.zip
rename functions to more understandable names
git-svn-id: svn://busybox.net/trunk/busybox@16447 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb/wfopen.c')
-rw-r--r--libbb/wfopen.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/libbb/wfopen.c b/libbb/wfopen.c
index 9d663281e..26e6a13e2 100644
--- a/libbb/wfopen.c
+++ b/libbb/wfopen.c
@@ -7,14 +7,12 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */ 8 */
9 9
10#include <stdio.h>
11#include <errno.h>
12#include "libbb.h" 10#include "libbb.h"
13 11
14FILE *bb_wfopen(const char *path, const char *mode) 12FILE *fopen_or_warn(const char *path, const char *mode)
15{ 13{
16 FILE *fp; 14 FILE *fp = fopen(path, mode);
17 if ((fp = fopen(path, mode)) == NULL) { 15 if (!fp) {
18 bb_perror_msg("%s", path); 16 bb_perror_msg("%s", path);
19 errno = 0; 17 errno = 0;
20 } 18 }