CTurt/PS4-SDK

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.

CTurt commented

Fixed as of this commit:

54f75f4