diff options
author | markm <markm@FreeBSD.org> | 2001-12-02 20:40:22 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-12-02 20:40:22 +0000 |
commit | a7016d6ca8de76e446db96f6f66969fa695fb423 (patch) | |
tree | 5c7b1dfe299519221c9b5426a143ced46b7036c1 /usr.bin/apply | |
parent | d46c91fd8b6c27dfd7f845f3ca0c45f5eaafb0c5 (diff) | |
download | FreeBSD-src-a7016d6ca8de76e446db96f6f66969fa695fb423.zip FreeBSD-src-a7016d6ca8de76e446db96f6f66969fa695fb423.tar.gz |
Use __FBSDID().
Diffstat (limited to 'usr.bin/apply')
-rw-r--r-- | usr.bin/apply/apply.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/apply/apply.c b/usr.bin/apply/apply.c index 1fc4796..6926388 100644 --- a/usr.bin/apply/apply.c +++ b/usr.bin/apply/apply.c @@ -34,16 +34,15 @@ * SUCH DAMAGE. */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); + #ifndef lint -#if 0 static const char sccsid[] = "@(#)apply.c 8.4 (Berkeley) 4/4/94"; #endif -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ #include <sys/types.h> - #include <sys/wait.h> #include <ctype.h> |