X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstdlib-safer.h;h=c28897ca22fcb4e67bfe57ed35c20aea7d6dfa06;hb=bc992b8f9a059d4c10379609c2998ef4ea5597ba;hp=8b1a7e11e5ef526167663b57905e2e452b4c274a;hpb=1657e8ea4800a0ecbd67c05e6b8896b37720110b;p=gnulib.git diff --git a/lib/stdlib-safer.h b/lib/stdlib-safer.h index 8b1a7e11e..c28897ca2 100644 --- a/lib/stdlib-safer.h +++ b/lib/stdlib-safer.h @@ -1,11 +1,11 @@ /* Invoke stdlib.h functions, but avoid some glitches. - Copyright (C) 2005 Free Software Foundation, Inc. + Copyright (C) 2005, 2009 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or modify + 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 - the Free Software Foundation; either version 2, or (at your option) - any later version. + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -13,9 +13,20 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ /* Written by Paul Eggert. */ int mkstemp_safer (char *); + +#if GNULIB_MKOSTEMP +int mkostemp_safer (char *, int); +#endif + +#if GNULIB_MKOSTEMPS +int mkostemps_safer (char *, int, int); +#endif + +#if GNULIB_MKSTEMPS +int mkstemps_safer (char *, int); +#endif