summaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/lib/stdlib.h')
-rw-r--r--src/kernel/lib/stdlib.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/kernel/lib/stdlib.h b/src/kernel/lib/stdlib.h
deleted file mode 100644
index 319cf26..0000000
--- a/src/kernel/lib/stdlib.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef DEF_STDLIB_H
-#define DEF_STDLIB_H
-
-#include <types.h>
-
-void *memcpy(void *dest, const void *src, int count);
-uint8_t *memset(uint8_t *dest, uint8_t val, int count);
-uint16_t *memsetw(uint16_t *dest, uint16_t val, int count);
-int strlen(const char *str);
-
-#define MIN(a, b) ((a) < (b) ? (a) : (b))
-#define MAX(a, b) ((a) > (b) ? (a) : (b))
-
-#endif
-