Libc implementation warnings
Closed this issue · 1 comments
CTurt commented
Declaring standard C functions like memset
as function pointers will give a warning:
../../include/libc.h:3:16: warning: built-in function 'memset' declared as non-function
extern void *(*memset)(void *destination, int value, size_t num);
Need to be able to suppress this warning.