Include <sys/param.h> first to make VAX port happy.

This commit is contained in:
matt 2005-12-24 08:34:10 +00:00
parent 460818ad02
commit 9abe0ed18f
2 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: md4c.c,v 1.1 2005/12/20 19:28:51 christos Exp $ */
/* $NetBSD: md4c.c,v 1.2 2005/12/24 08:34:10 matt Exp $ */
/*
* This file is derived from the RSA Data Security, Inc. MD4 Message-Digest
@ -31,7 +31,7 @@
#if !defined(_KERNEL) && !defined(_STANDALONE)
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: md4c.c,v 1.1 2005/12/20 19:28:51 christos Exp $");
__RCSID("$NetBSD: md4c.c,v 1.2 2005/12/24 08:34:10 matt Exp $");
#endif /* LIBC_SCCS and not lint */
#include "namespace.h"
@ -48,6 +48,7 @@ __RCSID("$NetBSD: md4c.c,v 1.1 2005/12/20 19:28:51 christos Exp $");
#else
#include <sys/param.h>
#include <sys/md4.h>
#include <lib/libkern/libkern.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: md5c.c,v 1.1 2005/12/20 19:28:51 christos Exp $ */
/* $NetBSD: md5c.c,v 1.2 2005/12/24 08:34:10 matt Exp $ */
/*
* This file is derived from the RSA Data Security, Inc. MD5 Message-Digest
@ -30,13 +30,13 @@
*/
#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 <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: md5c.c,v 1.1 2005/12/20 19:28:51 christos Exp $");
__RCSID("$NetBSD: md5c.c,v 1.2 2005/12/24 08:34:10 matt Exp $");
#endif /* LIBC_SCCS and not lint */
#include "namespace.h"
#include <sys/types.h>