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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168403

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)
{