aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/net.c2
-rw-r--r--net/net.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/net.c b/net/net.c
index 0a2dc98..5088417 100644
--- a/net/net.c
+++ b/net/net.c
@@ -1,4 +1,4 @@
-#include <net.h>
+#include "net.h"
void itob (char *buf, int n) {
buf[0] = (n >> 24) & 0xFF;
diff --git a/net/net.h b/net/net.h
index 837dafe..276ec52 100644
--- a/net/net.h
+++ b/net/net.h
@@ -1,7 +1,7 @@
#ifndef NET_H
#define NET_H
-#include <plibsys.h>
+#include "plibsys/plibsys.h"
#define SERVER_PORT 25565