diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2000-06-08 06:24:44 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2000-06-08 06:24:44 +0000 |
| commit | ae2b1b1bf42fa07968195636f7799b0bae1e41cf (patch) | |
| tree | 8b053abcfe286b681e9451ef204a9fd201907285 | |
| parent | 412c792a128fb3ef5f5c8933f63450bff8ae0b2b (diff) | |
Notes
| -rw-r--r-- | usr.bin/yes/yes.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/usr.bin/yes/yes.c b/usr.bin/yes/yes.c index 5e1edd6eaa79..80641aa3938f 100644 --- a/usr.bin/yes/yes.c +++ b/usr.bin/yes/yes.c @@ -32,15 +32,22 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1987, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint +#if 0 static char sccsid[] = "@(#)yes.c 8.1 (Berkeley) 6/6/93"; +#else +static const char rcsid[] = "$FreeBSD$"; +#endif #endif /* not lint */ +#include <stdio.h> + +int main(argc, argv) int argc; char **argv; |
