mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 23:36:32 +00:00
7 lines
107 B
C
7 lines
107 B
C
|
#ifndef __MEMSET_H__
|
||
|
#define __MEMSET_H__
|
||
|
|
||
|
void *memset(void *s, int c, size_t n);
|
||
|
|
||
|
#endif // __MEMSET_H__
|