X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffreopen.c;h=71c663cfbeb1c57132ad1ba4e5865119d938b6e4;hb=59547ffe21fdc59d39fa6f5c6d173cb04eaee67c;hp=d36ec5c88c1ea20d40142140ffefd8b38f9330f2;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/lib/freopen.c b/lib/freopen.c index d36ec5c88..71c663cfb 100644 --- a/lib/freopen.c +++ b/lib/freopen.c @@ -1,5 +1,5 @@ /* Open a stream to a file. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007-2008 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,19 +18,29 @@ #include +/* Get the original definition of freopen. It might be defined as a macro. */ +#define __need_FILE +#include +#undef __need_FILE + +static inline FILE * +orig_freopen (const char *filename, const char *mode, FILE *stream) +{ + return freopen (filename, mode, stream); +} + /* Specification. */ #include #include FILE * -freopen (const char *filename, const char *mode, FILE *stream) -#undef freopen +rpl_freopen (const char *filename, const char *mode, FILE *stream) { #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ if (strcmp (filename, "/dev/null") == 0) filename = "NUL"; #endif - return freopen (filename, mode, stream); + return orig_freopen (filename, mode, stream); }