diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-11 20:41:05 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-11 20:41:05 -0400 |
commit | 787c3b0fd09ea8456d2391e59e7589f0cf8f5555 (patch) | |
tree | cd37698def0dca42b34bc13c6da3d7f5fdfd16c0 /src/stdlib | |
parent | 0a908b26fa745b4b295e705564af5eaf25e4fbd4 (diff) |
move auto-generated nonstd/syscall.h to static private _syscall.h
Diffstat (limited to 'src/stdlib')
-rw-r--r-- | src/stdlib/_Exit.c | 2 | ||||
-rw-r--r-- | src/stdlib/exit.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/stdlib/_Exit.c b/src/stdlib/_Exit.c index a199b457..9b1defdf 100644 --- a/src/stdlib/_Exit.c +++ b/src/stdlib/_Exit.c @@ -1,5 +1,5 @@ #include <stdlib.h> -#include "nonstd/syscall.h" +#include "../_syscall.h" /** cause normal program termination without handlers **/ _Noreturn void _Exit(int status) diff --git a/src/stdlib/exit.c b/src/stdlib/exit.c index 28f87242..0cba3147 100644 --- a/src/stdlib/exit.c +++ b/src/stdlib/exit.c @@ -1,7 +1,7 @@ #include <stdlib.h> #include "limits.h" #include "stddef.h" -#include "nonstd/syscall.h" +#include "../_syscall.h" #include "_stdlib.h" /** cause normal program termination **/ |