diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-02-28 14:20:16 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-02-28 14:20:16 -0500 |
commit | 5608b687ac1a10b1cc525d8e61d0abfce2f5737d (patch) | |
tree | ea967de71410f76be1b986911df2280978f1c2b3 /src/stdlib | |
parent | f2f3448c93487b8a25c044cb0de215b6399b6008 (diff) |
new <nonstd/lib.h>
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 **/ |