diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-01-30 18:35:35 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-01-30 18:35:35 -0500 |
| commit | d5e1fa835e46dac2e1729e73c5e6743ef78714c7 (patch) | |
| tree | 656a1c893b9930f444761c2811b1fc57fccd6802 /src/stdlib | |
| parent | 7cdd27f8dce39bed37a266fa578cfaedce0a015d (diff) | |
fix to compile under c89
Diffstat (limited to 'src/stdlib')
| -rw-r--r-- | src/stdlib/realloc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdlib/realloc.c b/src/stdlib/realloc.c index 982d01ac..e02ad89a 100644 --- a/src/stdlib/realloc.c +++ b/src/stdlib/realloc.c @@ -6,9 +6,11 @@ #include <stdlib.h> #include "_stdlib.h" +#if 0 //#include <sys/types.h> //#include <fcntl.h> //#include <sys/mman.h> +#endif #ifdef POSIX_FORCED #include "_syscall.h" |
