diff --git a/library/stdlib.c b/library/stdlib.c index 3a6cb67..0d1fda8 100644 --- a/library/stdlib.c +++ b/library/stdlib.c @@ -5,7 +5,6 @@ void exit( int code ) { syscall_process_exit(code); - } /* Some easy things yet to be implemented. */ @@ -18,3 +17,7 @@ int usleep( int usec ); int time( int *t ); struct timeval; int gettimeofday( struct timeval *tval, void *arg ); + +#ifdef LIBRARY_STDLIB_EXT + #include "library_stdlib_ext.c" +#endif