mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 21:49:06 -04:00
14 lines
297 B
C
14 lines
297 B
C
/* $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_ */
|