Subject: CVS commit: syssrc
To: None <source-changes@netbsd.org>
From: Simon Burge <simonb@netbsd.org>
List: source-changes
Date: 03/28/2000 19:19:54
Module Name:	syssrc
Committed By:	simonb
Date:		Wed Mar 29 03:19:53 UTC 2000

Modified Files:
	syssrc/sys/lib/libkern: __assert.c

Log Message:
Don't prototype __assert() if not STANDALONE - <sys/systm.h> has already
included <lib/libkern/libkern.h> to get the prototype by this stage.

XXX: should we just change <sys/systm.h> from
	#ifdef _KERNEL
	#include <sys/systm.h>
	#endif
     to
	#if defined(_KERNEL) || defined(_STANDALONE)
	#include <sys/systm.h>
	#endif
     anyways?


To generate a diff of this commit:
cvs rdiff -r1.4 -r1.5 syssrc/sys/lib/libkern/__assert.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.