diff options
author | obrien <obrien@FreeBSD.org> | 2002-06-30 05:13:54 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-06-30 05:13:54 +0000 |
commit | c84c569bd147997ed62ff1c5e725709828199b68 (patch) | |
tree | 4c7fe36c579d443e1734fa7f4d5c003df04f4202 /bin/ls/ls.c | |
parent | 51373f0ac8027bc2ce81c9e4f0c3203716197592 (diff) | |
download | FreeBSD-src-c84c569bd147997ed62ff1c5e725709828199b68.zip FreeBSD-src-c84c569bd147997ed62ff1c5e725709828199b68.tar.gz |
Consistently use __FBSDID
Diffstat (limited to 'bin/ls/ls.c')
-rw-r--r-- | bin/ls/ls.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/ls/ls.c b/bin/ls/ls.c index 496c980..fb6eb1e 100644 --- a/bin/ls/ls.c +++ b/bin/ls/ls.c @@ -34,10 +34,6 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> - -__FBSDID("$FreeBSD$"); - #ifndef lint static const char copyright[] = "@(#) Copyright (c) 1989, 1993, 1994\n\ @@ -49,6 +45,8 @@ static const char copyright[] = static char sccsid[] = "@(#)ls.c 8.5 (Berkeley) 4/2/94"; #endif /* not lint */ #endif +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/types.h> #include <sys/stat.h> |