Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/lib/libkern Include <lib/libkern/libkern.h> after sys/pa...



details:   https://anonhg.NetBSD.org/src/rev/0f438a83af73
branches:  trunk
changeset: 477222:0f438a83af73
user:      ragge <ragge%NetBSD.org@localhost>
date:      Sat Oct 16 19:06:48 1999 +0000

description:
Include <lib/libkern/libkern.h> after sys/param.h, to avoid warnings
when memcpy et al is static inline.

diffstat:

 sys/lib/libkern/md5c.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 01cc29971591 -r 0f438a83af73 sys/lib/libkern/md5c.c
--- a/sys/lib/libkern/md5c.c    Sat Oct 16 15:35:18 1999 +0000
+++ b/sys/lib/libkern/md5c.c    Sat Oct 16 19:06:48 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: md5c.c,v 1.7 1999/09/16 00:06:46 sommerfeld Exp $      */
+/*     $NetBSD: md5c.c,v 1.8 1999/10/16 19:06:48 ragge Exp $   */
 
 /*
  * This file is derived from the RSA Data Security, Inc. MD5 Message-Digest
@@ -30,9 +30,9 @@
  */
 
 #if defined(_KERNEL) || defined(_STANDALONE)
-#include <lib/libkern/libkern.h>
 #include <sys/param.h>
 #include <sys/md5.h>
+#include <lib/libkern/libkern.h>
 #else
 #include "namespace.h"
 #include <sys/types.h>



Home | Main Index | Thread Index | Old Index