diff options
author | obrien <obrien@FreeBSD.org> | 2008-01-13 05:49:32 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2008-01-13 05:49:32 +0000 |
commit | def79099e7c2ca2b773aa94d5b80c571dec9460f (patch) | |
tree | 9a6cba0f4384569a2eee18bf74577d8fd41aa2c7 /contrib/cvs/lib/getpass.c | |
parent | 0526761d4d99d34d2de093998c7ccd3f82695651 (diff) | |
parent | 55b663837dd12bbe5836969ac2a3f052a9028ea5 (diff) | |
download | FreeBSD-src-def79099e7c2ca2b773aa94d5b80c571dec9460f.zip FreeBSD-src-def79099e7c2ca2b773aa94d5b80c571dec9460f.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r175261,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/cvs/lib/getpass.c')
-rw-r--r-- | contrib/cvs/lib/getpass.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/cvs/lib/getpass.c b/contrib/cvs/lib/getpass.c index e4d4fe9..31c7460 100644 --- a/contrib/cvs/lib/getpass.c +++ b/contrib/cvs/lib/getpass.c @@ -37,7 +37,12 @@ #endif char * +#if __STDC__ getpass (const char *prompt) +#else +getpass (prompt) + const char *prompt; +#endif { FILE *in, *out; struct termios s, t; |