X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffchdir.c;h=246987c8860289e1c908f5c42eba00de64c71d7a;hb=95454b6b2dbb9f57bf5623a0fd8d40fb2433c4d7;hp=1f7cf994c23db9958a3668216620e80c053368f8;hpb=5e6b92bb993a0e913877c495687556df918d7d86;p=gnulib.git diff --git a/lib/fchdir.c b/lib/fchdir.c index 1f7cf994c..246987c88 100644 --- a/lib/fchdir.c +++ b/lib/fchdir.c @@ -1,10 +1,10 @@ /* fchdir replacement. Copyright (C) 2006, 2007 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 @@ -12,8 +12,7 @@ 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 . */ #include @@ -79,7 +78,7 @@ ensure_dirs_slot (size_t fd) /* Override open() and close(), to keep track of the open file descriptors. */ int -close (int fd) +rpl_close (int fd) #undef close { int retval = close (fd); @@ -95,7 +94,7 @@ close (int fd) } int -open (const char *filename, int flags, ...) +rpl_open (const char *filename, int flags, ...) #undef open { mode_t mode; @@ -140,7 +139,7 @@ open (const char *filename, int flags, ...) descriptors. Needed because there is a function dirfd(). */ int -closedir (DIR *dp) +rpl_closedir (DIR *dp) #undef closedir { int fd = dirfd (dp); @@ -157,7 +156,7 @@ closedir (DIR *dp) } DIR * -opendir (const char *filename) +rpl_opendir (const char *filename) #undef opendir { DIR *dp; @@ -183,7 +182,7 @@ opendir (const char *filename) /* Override dup() and dup2(), to keep track of open file descriptors. */ int -dup (int oldfd) +rpl_dup (int oldfd) #undef dup { int newfd = dup (oldfd); @@ -218,7 +217,7 @@ dup (int oldfd) } int -dup2 (int oldfd, int newfd) +rpl_dup2 (int oldfd, int newfd) #undef dup2 { int retval = dup2 (oldfd, newfd);