aboutsummaryrefslogtreecommitdiff
path: root/src/inc/lib.h
diff options
context:
space:
mode:
authorMarvin Borner2021-07-27 21:10:34 +0200
committerMarvin Borner2021-07-27 21:10:34 +0200
commitbfdc8d2d843c08bd01517256a63518d03da236f6 (patch)
tree399cfdb73a1716b8d8f6efb1447990f917a9242a /src/inc/lib.h
parent56c2a240f379ca3d12b1bb5a9950c1663ba33763 (diff)
Started treeify
Diffstat (limited to 'src/inc/lib.h')
-rw-r--r--src/inc/lib.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/inc/lib.h b/src/inc/lib.h
deleted file mode 100644
index 0402990..0000000
--- a/src/inc/lib.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef LIB_H
-#define LIB_H
-
-// Compatibility imports (mainly for Melvix)
-
-#ifdef __melvix__
-
-#include <arg.h>
-#include <assert.h>
-#include <def.h>
-#include <mem.h>
-#include <print.h>
-#include <str.h>
-#include <sys.h>
-typedef size_t u32;
-
-#elif defined(__linux__) || defined(unix) || defined(__unix__) || defined(__unix) || \
- defined(__APPLE__) || defined(__FreeBSD)
-
-#include <assert.h>
-#include <ctype.h>
-#include <stdarg.h>
-#include <stdbool.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <sys/param.h>
-
-#else
-#error "Unknown operating system"
-#endif
-
-#endif