Add local ptototype for memset function.

This commit is contained in:
Alexander Kabaev 2007-04-06 00:06:26 +00:00
parent 028e84c68b
commit c8c0ba192e

View File

@ -26,6 +26,9 @@
#include <sys/types.h>
__FBSDID("$FreeBSD$");
void *memset(void *, int, size_t);
void *
memset(void *b, int c, size_t len)
{