Linux, ( , , ), :
#include <asm/io.h>
void *memset(void *s, int c, size_t n);
n s c. , I/O, , memset_io().
s.
Doing some more research ... If you look at the sources <asm/io.h>, you can find:
#include <linux/string.h> /* for memset() and memcpy() */
... but also a function definition memset_io(), so I guess that should be right #include.
source
share