2008-11-18 Jeff Johnston <jjohnstn@redhat.com>

* libc/unix/basename.c: Add !_NO_BASENAME flag check so code can be
        ignored if desired by a platform.
        * libc/unix/dirname.c: Ditto except replace BASENAME with file name.
        * libc/unix/getcwd.c: Ditto.
        * libc/unix/getlogin.c: Ditto.
        * libc/unix/getpass.c: Ditto.
        * libc/unix/getpwent.c: Ditto.
        * libc/unix/getut.c: Ditto.
        * libc/unix/pread.c: Ditto.
        * libc/unix/pwrite.c: Ditto.
        * libc/unix/sigset.c: Ditto.
This commit is contained in:
Jeff Johnston 2008-11-18 22:40:40 +00:00
parent fd450adfe7
commit efb00eb5da
1 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
#ifndef _NO_GETPASS
/*
* Copyright (c) 1988 The Regents of the University of California.
* All rights reserved.
@ -97,3 +98,4 @@ getpass (prompt)
(void) fclose (fp);
return buf;
}
#endif /* !_NO_GETPASS */