diff options
author | Ian Moffett <ian@osmora.org> | 2025-04-13 01:20:41 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-04-13 01:20:41 -0400 |
commit | b179c4b6d9276b4e93b3bc047b462678cdf0b9f4 (patch) | |
tree | 8bba80011a60c5dc1215c6d02a260a29ce365830 /lib/libc/Makefile | |
parent | f4e961a45fae3a320c0d87d66a611dfa3979b453 (diff) |
libc: Add errno + OUSI errno impl
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/libc/Makefile')
-rw-r--r-- | lib/libc/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index 7ae6bd9..c750d34 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -21,6 +21,8 @@ headers: mkdir -p include/sys/ cp -f $(USRDIR)/include/sys/*.h include/sys cp -f include/*.h $(USRDIR)/include/ + cp -f include/stdlib/*.h $(USRDIR)/include/ + cp -rf include/ousi $(USRDIR)/include/ .PHONY: build/: |