-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cd1c11
commit 5147744
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule kernel
updated
38 files
Submodule lucerna
updated
18 files
+33 −0 | .github/workflows/build-mac.yml | |
+4 −3 | Makefile | |
+118 −0 | src/ctype.c | |
+6 −0 | src/errno.c | |
+22 −0 | src/include/ctype.h | |
+90 −0 | src/include/errno.h | |
+18 −0 | src/include/string.h | |
+10 −0 | src/include/sys/lux/lux.h | |
+46 −0 | src/include/sys/socket.h | |
+32 −0 | src/include/sys/types.h | |
+14 −0 | src/include/sys/un.h | |
+21 −0 | src/include/unistd.h | |
+13 −0 | src/include/wctype.h | |
+12 −8 | src/platform/x86_64-lux/stubs/crt0.asm | |
+27 −0 | src/platform/x86_64-lux/stubs/syscall.asm | |
+135 −0 | src/platform/x86_64-lux/syscalls.c | |
+61 −0 | src/platform/x86_64-lux/syscalls.h | |
+80 −0 | src/string.c |
Submodule lumen
updated
5 files
+39 −0 | .github/workflows/build-mac.yml | |
+1 −1 | .gitignore | |
+1 −1 | Makefile | |
+62 −0 | src/include/lumen/messages.h | |
+76 −3 | src/main.c |