From 68a1f3d8dca1ac1fcfd2a2ef2449ca5d32a1dec1 Mon Sep 17 00:00:00 2001 From: deraadt Date: Thu, 14 Dec 1995 10:00:50 +0000 Subject: [PATCH] libcrypt is now an empty library --- lib/libcrypt/Makefile | 10 ++-------- lib/libcrypt/nothing.c | 6 ++++++ 2 files changed, 8 insertions(+), 8 deletions(-) create mode 100644 lib/libcrypt/nothing.c diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile index e77e2dd7701..22b0431e4f7 100644 --- a/lib/libcrypt/Makefile +++ b/lib/libcrypt/Makefile @@ -1,15 +1,9 @@ # $NetBSD: Makefile,v 1.6 1995/02/19 12:18:56 cgd Exp $ # -# This directory contains an implementation of crypt(3) and associated -# routines. They have been modified so that decryption is no longer possible, -# and thus are exportable. They were taken from the 4.4BSD-Lite foreign -# distribution. +# This library exists for compatibility with NetBSD. LIB= crypt -SRCS= crypt.c - -MAN= crypt.3 -MLINKS= crypt.3 encrypt.3 crypt.3 setkey.3 +SRCS= nothing.c .include diff --git a/lib/libcrypt/nothing.c b/lib/libcrypt/nothing.c new file mode 100644 index 00000000000..0c130039ac7 --- /dev/null +++ b/lib/libcrypt/nothing.c @@ -0,0 +1,6 @@ +/* + * + * Absolutely nothing. + * We no longer need libcrypt because crypt() is once again in libc + * + */ -- 2.20.1