X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstdio-safer.h;h=62fdf647163d013ef892070d4d92d0a4fbaa293d;hb=38ed8cbdaac9ed0f1c8cbedfac78ca3f10991528;hp=dde22f104509f0cc3f51b27c11ca6d26d1bdca3e;hpb=ccb9c6798066958dd14c1005a7d5ffc1cbd6edae;p=gnulib.git diff --git a/lib/stdio-safer.h b/lib/stdio-safer.h index dde22f104..62fdf6471 100644 --- a/lib/stdio-safer.h +++ b/lib/stdio-safer.h @@ -1,6 +1,6 @@ /* Invoke stdio functions, but avoid some glitches. - Copyright (C) 2001, 2003, 2006, 2009 Free Software Foundation, Inc. + Copyright (C) 2001, 2003, 2006, 2009-2011 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 @@ -19,6 +19,18 @@ #include +#if GNULIB_FOPEN_SAFER FILE *fopen_safer (char const *, char const *); +#endif + +#if GNULIB_FREOPEN_SAFER +FILE *freopen_safer (char const *, char const *, FILE *); +#endif + +#if GNULIB_POPEN_SAFER FILE *popen_safer (char const *, char const *); +#endif + +#if GNULIB_TMPFILE_SAFER FILE *tmpfile_safer (void); +#endif