diff options
author | imp <imp@FreeBSD.org> | 2000-09-04 06:11:25 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2000-09-04 06:11:25 +0000 |
commit | 01ea63e2130fc89ef4b6bc40cf4f92b9a540058f (patch) | |
tree | 5ca6c0128716af384a764aef1e52556a4f389bd3 /usr.bin/printf | |
parent | 3c95f9ccdee03bbd5201ce0c06d795f6b132e266 (diff) | |
download | FreeBSD-src-01ea63e2130fc89ef4b6bc40cf4f92b9a540058f.zip FreeBSD-src-01ea63e2130fc89ef4b6bc40cf4f92b9a540058f.tar.gz |
When we have both a rcsid and sccsid, ifdef 0 the sccsid. This
appears to be the standard FreeBSD way to do this. style(9) is silent
about this, however.
Diffstat (limited to 'usr.bin/printf')
-rw-r--r-- | usr.bin/printf/printf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/printf/printf.c b/usr.bin/printf/printf.c index df65f5a..62b8912 100644 --- a/usr.bin/printf/printf.c +++ b/usr.bin/printf/printf.c @@ -40,7 +40,9 @@ static char const copyright[] = #endif #ifndef lint +#if 0 static char const sccsid[] = "@(#)printf.c 8.1 (Berkeley) 7/20/93"; +#endif static const char rcsid[] = "$FreeBSD$"; #endif /* not lint */ |