ZealOS/zealbooter/lib/memset.h

7 lines
107 B
C
Raw Normal View History

#ifndef __MEMSET_H__
#define __MEMSET_H__
void *memset(void *s, int c, size_t n);
#endif // __MEMSET_H__