From 0ddce65214d2f162b389910d4cb74d664bed562d Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Thu, 20 Dec 2012 20:00:06 +0000 Subject: fclose() and fflush() are standard C routines, so there's no need for our own wrappers. (pcapio.c isn't using wrappers around, for example, fwrite().) svn path=/trunk/; revision=46640 --- wsutil/file_util.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'wsutil/file_util.h') diff --git a/wsutil/file_util.h b/wsutil/file_util.h index 09c5c64af9..4710aa6a15 100644 --- a/wsutil/file_util.h +++ b/wsutil/file_util.h @@ -95,8 +95,6 @@ extern FILE * ws_stdio_freopen (const gchar *filename, const gchar *mode, FILE * #define ws_fstat64 _fstati64 /* use _fstati64 for 64-bit size support */ #define ws_lseek64 _lseeki64 /* use _lseeki64 for 64-bit offset support */ #define ws_fdopen _fdopen -#define ws_fclose fclose -#define ws_fflush fflush /* DLL loading */ @@ -153,8 +151,6 @@ extern char *getenv_utf8(const char *varname); #define ws_fstat64 fstat /* AC_SYS_LARGEFILE should make off_t 64-bit */ #define ws_lseek64 lseek /* AC_SYS_LARGEFILE should make off_t 64-bit */ #define ws_fdopen fdopen -#define ws_fclose fclose -#define ws_fflush fflush #define O_BINARY 0 /* Win32 needs the O_BINARY flag for open() */ #endif /* _WIN32 */ -- cgit v1.2.3