aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/std.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/std.h')
-rw-r--r--src/std.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/std.h b/src/std.h
index a4fe905..2d7d8c8 100644
--- a/src/std.h
+++ b/src/std.h
@@ -6,18 +6,8 @@
int atoi(const char*);
void* calloc(size_t, size_t);
void exit(int);
-void* memcpy(void*, const void*, size_t);
-void* memmove(void*, const void*, size_t);
-void* memset(void*, int, size_t);
int mkstemps(char*, int);
void* realloc(void*, size_t);
-int strcmp(const char*, const char*);
-size_t strlen(const char*);
-int strncmp(const char*, const char*, size_t);
-char* strdup(const char*);
-char* strndup(const char*, size_t);
-char* strstr(const char*, const char*);
-char* strrchr(const char*, int);
long strtol(const char*, char**, int);
int system(const char*);