xref: /netbsd-src/sys/arch/hpc/stand/include/lib/libkern/libkern.h (revision 48360965f30c307b6836d0d898d15ce6c1d9b387)
1 /*	$NetBSD: libkern.h,v 1.1 2006/10/18 01:39:01 uwe Exp $	*/
2 
3 /*
4  * Fake libkern.h for the few files we borrow from sys/lib/libsa
5  */
6 #ifndef _LIB_LIBKERN_LIBKERN_H_
7 #define _LIB_LIBKERN_LIBKERN_H_
8 
9 #include <sys/types.h>
10 
11 size_t strlen(const char *string);
12 
13 #endif /* !_LIB_LIBKERN_LIBKERN_H_ */
14