diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-02-01 01:08:48 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-02-01 01:08:48 +0000 |
| commit | 22626efa0f96cbca4edae882e46cb56b1879706b (patch) | |
| tree | 8179b431c3e3ff86ad8d0302e31673509ac370ce /lib/libc/gen/crypt.c | |
| parent | ea8d448a923f0d68d7ecf1d2a0583c7d17bdee4e (diff) | |
Notes
Diffstat (limited to 'lib/libc/gen/crypt.c')
| -rw-r--r-- | lib/libc/gen/crypt.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/libc/gen/crypt.c b/lib/libc/gen/crypt.c index 8012b06a8e1b..5c056853e997 100644 --- a/lib/libc/gen/crypt.c +++ b/lib/libc/gen/crypt.c @@ -36,8 +36,9 @@ #if defined(LIBC_SCCS) && !defined(lint) /* from static char sccsid[] = "@(#)crypt.c 5.11 (Berkeley) 6/25/91"; */ -static char rcsid[] = "$FreeBSD$"; #endif /* LIBC_SCCS and not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <unistd.h> #include <stdio.h> @@ -55,7 +56,7 @@ __warn_references(des_setkey, int des_setkey(key) - register const char *key; + const char *key; { fprintf(stderr, "WARNING! des_setkey(3) not present in the system!\n"); return (0); @@ -81,7 +82,7 @@ __warn_references(setkey, int setkey(key) - register const char *key; + const char *key; { fprintf(stderr, "WARNING! setkey(3) not present in the system!\n"); return (0); @@ -92,7 +93,7 @@ __warn_references(encrypt, int encrypt(block, flag) - register char *block; + char *block; int flag; { fprintf(stderr, "WARNING! encrypt(3) not present in the system!\n"); |
