blob: 5bb2dd7b67b7a206df2a464d9cacac5801274711 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $NetBSD: libkern.h,v 1.1 2006/10/18 01:39:01 uwe Exp $ */
/*
* Fake libkern.h for the few files we borrow from sys/lib/libsa
*/
#ifndef _LIB_LIBKERN_LIBKERN_H_
#define _LIB_LIBKERN_LIBKERN_H_
#include <sys/types.h>
size_t strlen(const char *string);
#endif /* !_LIB_LIBKERN_LIBKERN_H_ */
|