diff options
author | jacopo grandi <jak.sk8@hotmail.it> | 2021-03-02 09:44:19 +0100 |
---|---|---|
committer | jacopo grandi <jak.sk8@hotmail.it> | 2021-03-02 09:44:19 +0100 |
commit | 879fb2adefadbc5f38711cd8f01bcc4cee053e3d (patch) | |
tree | 63d9841f0dd321978714dd5839cb6f8c3c8df57e /net | |
parent | 2f345b1d6e130177efe4fa47d5b2bd11f352ce85 (diff) |
i hate cmake, g++, ld, collect2, cc1, x86_64-w64-mingw32
Diffstat (limited to 'net')
-rw-r--r-- | net/net.c | 2 | ||||
-rw-r--r-- | net/net.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -#include <net.h> +#include "net.h" void itob (char *buf, int n) { buf[0] = (n >> 24) & 0xFF; @@ -1,7 +1,7 @@ #ifndef NET_H #define NET_H -#include <plibsys.h> +#include "plibsys/plibsys.h" #define SERVER_PORT 25565 |