diff options
author | tholo <> | 1996-08-19 08:19:51 +0000 |
---|---|---|
committer | tholo <> | 1996-08-19 08:19:51 +0000 |
commit | 057dc3cd255a3e12f9cb92d21ec3f71c65cfd475 (patch) | |
tree | eeb109c37c4698e6c2d4ca59f97888a99c9cfb52 /src/lib/libc/crypt/crypt.c | |
parent | bb6d592d16d9d32acc856c41ac3bc30aeed7b8b3 (diff) | |
download | openbsd-057dc3cd255a3e12f9cb92d21ec3f71c65cfd475.tar.gz openbsd-057dc3cd255a3e12f9cb92d21ec3f71c65cfd475.tar.bz2 openbsd-057dc3cd255a3e12f9cb92d21ec3f71c65cfd475.zip |
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'src/lib/libc/crypt/crypt.c')
-rw-r--r-- | src/lib/libc/crypt/crypt.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/crypt.c b/src/lib/libc/crypt/crypt.c index 074a40bde8..ec2dee8c3f 100644 --- a/src/lib/libc/crypt/crypt.c +++ b/src/lib/libc/crypt/crypt.c | |||
@@ -1,5 +1,3 @@ | |||
1 | /* $OpenBSD: crypt.c,v 1.5 1996/07/02 23:05:55 deraadt Exp $ */ | ||
2 | |||
3 | /* | 1 | /* |
4 | * FreeSec: libcrypt | 2 | * FreeSec: libcrypt |
5 | * | 3 | * |
@@ -50,6 +48,11 @@ | |||
50 | * only the crypt() interface. This is required to make binaries linked | 48 | * only the crypt() interface. This is required to make binaries linked |
51 | * against crypt.o exportable or re-exportable from the USA. | 49 | * against crypt.o exportable or re-exportable from the USA. |
52 | */ | 50 | */ |
51 | |||
52 | #if defined(LIBC_SCCS) && !defined(lint) | ||
53 | static char rcsid[] = "$OpenBSD: crypt.c,v 1.6 1996/08/19 08:19:49 tholo Exp $"; | ||
54 | #endif /* LIBC_SCCS and not lint */ | ||
55 | |||
53 | #include <sys/types.h> | 56 | #include <sys/types.h> |
54 | #include <sys/param.h> | 57 | #include <sys/param.h> |
55 | #include <pwd.h> | 58 | #include <pwd.h> |