summaryrefslogtreecommitdiff
path: root/src/lib/libc/crypt/crypt.c
diff options
context:
space:
mode:
authortholo <>1996-08-19 08:19:51 +0000
committertholo <>1996-08-19 08:19:51 +0000
commit057dc3cd255a3e12f9cb92d21ec3f71c65cfd475 (patch)
treeeeb109c37c4698e6c2d4ca59f97888a99c9cfb52 /src/lib/libc/crypt/crypt.c
parentbb6d592d16d9d32acc856c41ac3bc30aeed7b8b3 (diff)
downloadopenbsd-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.c7
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)
53static 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>