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