diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-07-11 12:13:59 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-07-11 12:13:59 -0300 |
commit | e450b0d47e9d05a806769d096646d723845e0ba2 (patch) | |
tree | 68b43e458651ea393c7d0774907aec0200d234c6 /jet.cpp | |
parent | f1ad05bb486ec49f576580cda8e6c9a9a8b92317 (diff) | |
download | jet-e450b0d47e9d05a806769d096646d723845e0ba2.tar.gz jet-e450b0d47e9d05a806769d096646d723845e0ba2.zip |
Make client side ipc binary
Diffstat (limited to 'jet.cpp')
-rw-r--r-- | jet.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,7 @@ -#include <stdlib.h> #include <stdio.h> #include <string.h> +#include <stdint.h> +#include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> @@ -11,7 +12,10 @@ #include <unistd.h> #include <sys/epoll.h> +#include "ipc.cpp" +#include "page.cpp" #include "buffer.cpp" +#include "point.cpp" #include "client.cpp" #define PORT 6969 |