diff options
author | Vincent Sanders <vince@kyllikki.org> | 2019-10-11 10:50:42 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-10-11 12:17:05 +0200 |
commit | 904bd3b441bc5c603fa6a992aa6cfd398e96abfb (patch) | |
tree | dcf5d8d854e00f172acadf4f5ebd6d47afeb3e74 /Libraries/LibC/setjmp.h | |
parent | 06113b4ffe3b76d85f2744751cfac646b90e9cca (diff) | |
download | serenity-904bd3b441bc5c603fa6a992aa6cfd398e96abfb.zip |
Libc: make library internal includes come from private include namespace
Diffstat (limited to 'Libraries/LibC/setjmp.h')
-rw-r--r-- | Libraries/LibC/setjmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibC/setjmp.h b/Libraries/LibC/setjmp.h index a6511a38f6..6d76e42ddc 100644 --- a/Libraries/LibC/setjmp.h +++ b/Libraries/LibC/setjmp.h @@ -2,7 +2,7 @@ #include <signal.h> #include <stdbool.h> -#include <stdint.h> +#include <bits/stdint.h> #include <sys/cdefs.h> #include <sys/types.h> |