xref: /netbsd-src/sys/arch/hpc/stand/include/lib/libkern/libkern.h (revision 4a0ed35f45bc0a95683cee95422cf250c0661e09)
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