Source-Changes archive

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

CVS commit: syssrc



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.




Home | Main Index | Thread Index | Old Index