diff options
| author | spicyjpeg <88942473+spicyjpeg@users.noreply.github.com> | 2021-11-18 17:23:25 +0100 |
|---|---|---|
| committer | spicyjpeg <88942473+spicyjpeg@users.noreply.github.com> | 2021-11-18 17:23:25 +0100 |
| commit | 619fa016bbc4ddd8d4a670cf3f8aa63617473b2f (patch) | |
| tree | 3b526a071b715452beadf168e3c6fc898b5fe48c /libpsn00b/libc | |
| parent | 8b6a76055ca426c494e16042e21f5e19b870b2ac (diff) | |
| download | psn00bsdk-619fa016bbc4ddd8d4a670cf3f8aa63617473b2f.tar.gz | |
Deprecated malloc.h, moved int*_t types to stdint.h
Diffstat (limited to 'libpsn00b/libc')
| -rw-r--r-- | libpsn00b/libc/c++-support.cxx | 3 | ||||
| -rw-r--r-- | libpsn00b/libc/string.c | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/libpsn00b/libc/c++-support.cxx b/libpsn00b/libc/c++-support.cxx index fcf7cfc..d169fdb 100644 --- a/libpsn00b/libc/c++-support.cxx +++ b/libpsn00b/libc/c++-support.cxx @@ -1,7 +1,6 @@ #include <assert.h> -#include <sys/types.h> +#include <stdint.h> #include <stdlib.h> -#include <malloc.h> extern "C" diff --git a/libpsn00b/libc/string.c b/libpsn00b/libc/string.c index e11ed67..445b227 100644 --- a/libpsn00b/libc/string.c +++ b/libpsn00b/libc/string.c @@ -6,7 +6,7 @@ #include <stdio.h> #include <string.h> -#include <malloc.h> +#include <stdlib.h> int tolower(int chr) { |
