aboutsummaryrefslogtreecommitdiff
path: root/source/port.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/port.h')
-rw-r--r--source/port.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/port.h b/source/port.h
index fcfe836..06c5f5e 100644
--- a/source/port.h
+++ b/source/port.h
@@ -3,6 +3,12 @@
#ifndef _PORT_H_
#define _PORT_H_
+#include <stdio.h>
+#include <stddef.h>
+#include <stdlib.h>
+#include <stdint.h>
+
+#include <boolean.h>
#include <limits.h>
#include <string.h>
#include <sys/types.h>
@@ -62,8 +68,6 @@ void _splitpath(const char* path, char* drive, char* dir, char* fname, char* ext
#define FAST_ALIGNED_LSB_WORD_ACCESS
#endif
-#include <libretro.h>
-
#define ABS(X) ((X) < 0 ? -(X) : (X))
#define MIN(A,B) ((A) < (B) ? (A) : (B))
#define MAX(A,B) ((A) > (B) ? (A) : (B))