diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-02-11 20:12:40 -0500 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-02-11 20:12:40 -0500 |
commit | 590c4b500b9dd37d372a935865aa4df0ab0bf43c (patch) | |
tree | 5572d76c91e106e74e1401076f130fb902f6b67b /include/gba/libc.h | |
parent | bc063b45d05716d1eab283f6d474bcdc601cafde (diff) | |
parent | 14a76793e596d612efd273169c4172922c270f13 (diff) |
Merge branch 'master' into record_mixing
Diffstat (limited to 'include/gba/libc.h')
-rw-r--r-- | include/gba/libc.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/gba/libc.h b/include/gba/libc.h deleted file mode 100644 index 9ed82ac28..000000000 --- a/include/gba/libc.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef GUARD_LIBC_H -#define GUARD_LIBC_H - -void *memset(void *dst, int val, size_t size); -void *memcpy(void *dst, const void *src, size_t size); -int strcmp(const char *s1, const char *s2); -char *strcpy(char *dst0, const char *src0); -#define abs(x) ((x) >= 0 ? (x) : -(x)) - -#endif //GUARD_LIBC_H |