switch on _KERNEL to pull in correct headers
authorderaadt <deraadt@openbsd.org>
Wed, 1 May 1996 15:18:44 +0000 (15:18 +0000)
committerderaadt <deraadt@openbsd.org>
Wed, 1 May 1996 15:18:44 +0000 (15:18 +0000)
12 files changed:
sys/lib/libkern/Makefile
sys/lib/libkern/bcmp.c
sys/lib/libkern/bzero.c
sys/lib/libkern/ffs.c
sys/lib/libkern/quad.h
sys/lib/libkern/strcat.c
sys/lib/libkern/strcmp.c
sys/lib/libkern/strcpy.c
sys/lib/libkern/strlen.c
sys/lib/libkern/strncasecmp.c
sys/lib/libkern/strncmp.c
sys/lib/libkern/strncpy.c

index 6d6e57e..83f4888 100644 (file)
@@ -1,5 +1,5 @@
-#      $OpenBSD: Makefile,v 1.4 1996/04/17 05:03:07 mickey Exp $
-#      $NetBSD: Makefile,v 1.25 1996/02/02 20:34:38 mycroft Exp $
+#      $OpenBSD: Makefile,v 1.5 1996/05/01 15:18:44 deraadt Exp $
+#      $NetBSD: Makefile,v 1.26 1996/04/18 02:14:48 cgd Exp $
 
 LIB=   kern
 NOPIC=
@@ -7,7 +7,7 @@ NOPIC=
 DIR=   ${KERNREL}${KERNDIR}
 
 CPPFLAGS=      -I${DIR}/arch/${MACHINE_ARCH} \
-               ${KERNCPPFLAGS:S/-D_KERNEL//:S@-I.@-I${KERNREL}.@g}
+               ${KERNCPPFLAGS:S@-I.@-I${KERNREL}.@g}
 
 .if exists (${DIR}/arch/${MACHINE_ARCH}/Makefile.inc)
 .PATH: ${DIR}/arch/${MACHINE_ARCH}
index feaa965..53b867e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bcmp.c,v 1.2 1996/04/19 16:09:19 niklas Exp $ */
+/*     $OpenBSD: bcmp.c,v 1.3 1996/05/01 15:18:45 deraadt Exp $        */
 
 /*
  * Copyright (c) 1987 Regents of the University of California.
 
 #if defined(LIBC_SCCS) && !defined(lint)
 /*static char *sccsid = "from: @(#)bcmp.c      5.6 (Berkeley) 2/24/91";*/
-static char *rcsid = "$OpenBSD: bcmp.c,v 1.2 1996/04/19 16:09:19 niklas Exp $";
+static char *rcsid = "$OpenBSD: bcmp.c,v 1.3 1996/05/01 15:18:45 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
+#ifndef _KERNEL
 #include <string.h>
+#else
 #include <lib/libkern/libkern.h>
+#endif
 
 /*
  * bcmp -- vax cmpc3 instruction
index b631f9e..e2f924a 100644 (file)
 
 #if defined(LIBC_SCCS) && !defined(lint)
 /*static char *sccsid = "from: @(#)bzero.c     5.7 (Berkeley) 2/24/91";*/
-static char *rcsid = "$Id: bzero.c,v 1.1.1.1 1995/10/18 08:52:49 deraadt Exp $";
+static char *rcsid = "$Id: bzero.c,v 1.2 1996/05/01 15:18:46 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
+#ifndef _KERNEL
 #include <string.h>
+#else
+#include <lib/libkern/libkern.h>
+#endif
 
 /*
  * bzero -- vax movc5 instruction
index ce998fc..08dd6cf 100644 (file)
 
 #if defined(LIBC_SCCS) && !defined(lint)
 /*static char *sccsid = "from: @(#)ffs.c       5.4 (Berkeley) 5/17/90";*/
-static char *rcsid = "$Id: ffs.c,v 1.1.1.1 1995/10/18 08:52:49 deraadt Exp $";
+static char *rcsid = "$Id: ffs.c,v 1.2 1996/05/01 15:18:47 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
+#ifndef _KERNEL
 #include <string.h>
+#else
+#include <lib/libkern/libkern.h>
+#endif
 
 /*
  * ffs -- vax ffs instruction
index b1b57ee..217b545 100644 (file)
@@ -1,5 +1,5 @@
-/*     $OpenBSD: quad.h,v 1.3 1996/04/19 16:09:31 niklas Exp $ */
-/*     $NetBSD: quad.h,v 1.6 1996/03/14 18:52:14 christos Exp $        */
+/*     $OpenBSD: quad.h,v 1.4 1996/05/01 15:18:48 deraadt Exp $        */
+/*     $NetBSD: quad.h,v 1.7 1996/04/18 02:20:04 cgd Exp $     */
 
 /*-
  * Copyright (c) 1992, 1993
  */
 
 #include <sys/types.h>
+#ifndef _KERNEL
 #include <limits.h>
+#else
+#include <machine/limits.h>
+#endif
 
 /*
  * Depending on the desired operation, we view a `long long' (aka quad_t) in
index 069bd1f..a63f220 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: strcat.c,v 1.2 1996/04/19 16:09:37 niklas Exp $       */
+/*     $OpenBSD: strcat.c,v 1.3 1996/05/01 15:18:49 deraadt Exp $      */
 
 /*
  * Copyright (c) 1988 Regents of the University of California.
 
 #if defined(LIBC_SCCS) && !defined(lint)
 /*static char *sccsid = "from: @(#)strcat.c    5.6 (Berkeley) 2/24/91";*/
-static char *rcsid = "$OpenBSD: strcat.c,v 1.2 1996/04/19 16:09:37 niklas Exp $";
+static char *rcsid = "$OpenBSD: strcat.c,v 1.3 1996/05/01 15:18:49 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
+#ifndef _KERNEL
 #include <string.h>
+#else
+#include <lib/libkern/libkern.h>
+#endif
 
 char *
 strcat(s, append)
index 6e73b66..9dd06cb 100644 (file)
 
 #if defined(LIBC_SCCS) && !defined(lint)
 /*static char *sccsid = "from: @(#)strcmp.c    5.5 (Berkeley) 1/26/91";*/
-static char *rcsid = "$Id: strcmp.c,v 1.1.1.1 1995/10/18 08:52:50 deraadt Exp $";
+static char *rcsid = "$Id: strcmp.c,v 1.2 1996/05/01 15:18:49 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
+#ifndef _KERNEL
 #include <string.h>
+#else
+#include <lib/libkern/libkern.h>
+#endif
 
 /*
  * Compare strings.
index d08b319..cfeff18 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: strcpy.c,v 1.2 1996/04/19 16:09:39 niklas Exp $       */
+/*     $OpenBSD: strcpy.c,v 1.3 1996/05/01 15:18:50 deraadt Exp $      */
 
 /*
  * Copyright (c) 1988 Regents of the University of California.
 
 #if defined(LIBC_SCCS) && !defined(lint)
 /*static char *sccsid = "from: @(#)strcpy.c    5.7 (Berkeley) 2/24/91";*/
-static char *rcsid = "$OpenBSD: strcpy.c,v 1.2 1996/04/19 16:09:39 niklas Exp $";
+static char *rcsid = "$OpenBSD: strcpy.c,v 1.3 1996/05/01 15:18:50 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
+#ifndef _KERNEL
 #include <string.h>
+#else
+#include <lib/libkern/libkern.h>
+#endif
 
 char *
 strcpy(to, from)
index aebb667..10597e3 100644 (file)
 
 #if defined(LIBC_SCCS) && !defined(lint)
 /*static char *sccsid = "from: @(#)strlen.c    5.5 (Berkeley) 1/26/91";*/
-static char *rcsid = "$Id: strlen.c,v 1.1.1.1 1995/10/18 08:52:50 deraadt Exp $";
+static char *rcsid = "$Id: strlen.c,v 1.2 1996/05/01 15:18:51 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
+#ifndef _KERNEL
 #include <string.h>
+#else
+#include <lib/libkern/libkern.h>
+#endif
 
 size_t
 strlen(str)
index a0c6633..5249050 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: strncasecmp.c,v 1.1 1996/02/29 13:27:50 niklas Exp $  */
+/*     $OpenBSD: strncasecmp.c,v 1.2 1996/05/01 15:18:52 deraadt Exp $ */
 
 /*
  * Copyright (c) 1994 Christian E. Hopps
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 #if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$Id: strncasecmp.c,v 1.1 1996/02/29 13:27:50 niklas Exp $";
+static char *rcsid = "$Id: strncasecmp.c,v 1.2 1996/05/01 15:18:52 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
+#ifndef _KERNEL
 #include <string.h>
+#else
+#include <lib/libkern/libkern.h>
+#endif
 
 int
 strncasecmp(s1, s2, n)
index 894ab4b..0a88e08 100644 (file)
 
 #if defined(LIBC_SCCS) && !defined(lint)
 /*static char *sccsid = "from: @(#)strncmp.c   5.6 (Berkeley) 1/26/91";*/
-static char *rcsid = "$Id: strncmp.c,v 1.1.1.1 1995/10/18 08:52:50 deraadt Exp $";
+static char *rcsid = "$Id: strncmp.c,v 1.2 1996/05/01 15:18:52 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
+#ifndef _KERNEL
 #include <string.h>
+#else
+#include <lib/libkern/libkern.h>
+#endif
 
 int
 strncmp(s1, s2, n)
index 93be91a..5279942 100644 (file)
 
 #if defined(LIBC_SCCS) && !defined(lint)
 /*static char *sccsid = "from: @(#)strncpy.c   5.6 (Berkeley) 1/26/91";*/
-static char *rcsid = "$Id: strncpy.c,v 1.1.1.1 1995/10/18 08:52:50 deraadt Exp $";
+static char *rcsid = "$Id: strncpy.c,v 1.2 1996/05/01 15:18:53 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
+#ifndef _KERNEL
 #include <string.h>
+#else
+#include <lib/libkern/libkern.h>
+#endif
 
 /*
  * Copy src to dst, truncating or null-padding to always copy n bytes.