diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-12 15:51:42 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-12 15:51:42 +0100 |
commit | a017a7744279a29ab490c0aa7d2a81deb0997ae4 (patch) | |
tree | b33d8d4c51d437b460ffa2ce9213edf40644bccd /LibC/Makefile | |
parent | 8e667747f0ac744e74b1acb5b83a0b9db0b7acde (diff) | |
download | serenity-a017a7744279a29ab490c0aa7d2a81deb0997ae4.zip |
Kernel+LibC+Userland: Start working on an IPv4 socket backend.
The first userland networking program will be "ping" :^)
Diffstat (limited to 'LibC/Makefile')
-rw-r--r-- | LibC/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/LibC/Makefile b/LibC/Makefile index c11873f17d..ba3a69695b 100644 --- a/LibC/Makefile +++ b/LibC/Makefile @@ -39,6 +39,7 @@ LIBC_OBJS = \ sys/wait.o \ poll.o \ locale.o \ + arpa/inet.o \ crt0.o ASM_OBJS = setjmp.no |