diff options
Diffstat (limited to 'src/stdlib')
| -rw-r--r-- | src/stdlib/atexit.c | 2 | ||||
| -rw-r--r-- | src/stdlib/exit.c | 1 | ||||
| -rw-r--r-- | src/stdlib/rand.c | 2 | ||||
| -rw-r--r-- | src/stdlib/srand.c | 2 |
4 files changed, 3 insertions, 4 deletions
diff --git a/src/stdlib/atexit.c b/src/stdlib/atexit.c index 180dc5e2..aeb9172c 100644 --- a/src/stdlib/atexit.c +++ b/src/stdlib/atexit.c @@ -1,6 +1,6 @@ #include <stdlib.h> #include "errno.h" -#include "nonstd/internal.h" +#include "nonstd/lib.h" /** register a function to run at program exit **/ diff --git a/src/stdlib/exit.c b/src/stdlib/exit.c index f69f01c7..501131e4 100644 --- a/src/stdlib/exit.c +++ b/src/stdlib/exit.c @@ -1,7 +1,6 @@ #include <stdlib.h> #include "limits.h" #include "stddef.h" -#include "nonstd/internal.h" #include "nonstd/syscall.h" /** cause normal program termination **/ diff --git a/src/stdlib/rand.c b/src/stdlib/rand.c index 459332ce..f1a3e3e1 100644 --- a/src/stdlib/rand.c +++ b/src/stdlib/rand.c @@ -1,5 +1,5 @@ #include <stdlib.h> -#include "nonstd/internal.h" +#include "nonstd/lib.h" #include "_rand.h" /** get a pseudo-random number **/ diff --git a/src/stdlib/srand.c b/src/stdlib/srand.c index 66ce786e..97ed2fec 100644 --- a/src/stdlib/srand.c +++ b/src/stdlib/srand.c @@ -1,5 +1,5 @@ #include <stdlib.h> -#include "nonstd/internal.h" +#include "nonstd/lib.h" /** seed the pseudo-random number generator **/ |
