1 /* $NetBSD: libkern.h,v 1.1.8.2 2006/12/30 20:46:02 yamt 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