diff options
author | Mark Murray <markm@FreeBSD.org> | 2001-12-02 20:23:02 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 2001-12-02 20:23:02 +0000 |
commit | 51e2220c27482e9bf2f0415dc6cc08c4939c17f8 (patch) | |
tree | b71cc0bce59dc96aaa03875cefcbadb46e1386b6 /usr.bin/at | |
parent | 4e030ba6cb8cecb5664c3058df6919909c0003d7 (diff) | |
download | src-test2-51e2220c27482e9bf2f0415dc6cc08c4939c17f8.tar.gz src-test2-51e2220c27482e9bf2f0415dc6cc08c4939c17f8.zip |
Notes
Diffstat (limited to 'usr.bin/at')
-rw-r--r-- | usr.bin/at/at.c | 7 | ||||
-rw-r--r-- | usr.bin/at/panic.c | 7 | ||||
-rw-r--r-- | usr.bin/at/parsetime.c | 7 | ||||
-rw-r--r-- | usr.bin/at/perm.c | 7 |
4 files changed, 12 insertions, 16 deletions
diff --git a/usr.bin/at/at.c b/usr.bin/at/at.c index af671daad0c9..a909dff75e39 100644 --- a/usr.bin/at/at.c +++ b/usr.bin/at/at.c @@ -26,10 +26,9 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); #define _USE_BSD 1 diff --git a/usr.bin/at/panic.c b/usr.bin/at/panic.c index 302ae58f134f..61584426ca91 100644 --- a/usr.bin/at/panic.c +++ b/usr.bin/at/panic.c @@ -23,10 +23,9 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); /* System Headers */ diff --git a/usr.bin/at/parsetime.c b/usr.bin/at/parsetime.c index dc0d180a67ab..4d738d0c640d 100644 --- a/usr.bin/at/parsetime.c +++ b/usr.bin/at/parsetime.c @@ -33,10 +33,9 @@ * \PLUS NUMBER MINUTES|HOURS|DAYS|WEEKS/ */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); /* System Headers */ diff --git a/usr.bin/at/perm.c b/usr.bin/at/perm.c index 1e9ec9cb2925..b22b3abbb3b0 100644 --- a/usr.bin/at/perm.c +++ b/usr.bin/at/perm.c @@ -23,10 +23,9 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); /* System Headers */ |