aboutsummaryrefslogtreecommitdiffhomepage
path: root/std.h
diff options
context:
space:
mode:
Diffstat (limited to 'std.h')
-rw-r--r--std.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/std.h b/std.h
deleted file mode 100644
index c1dcd66..0000000
--- a/std.h
+++ /dev/null
@@ -1,50 +0,0 @@
-#include <stddef.h>
-
-struct FILE;
-typedef struct FILE FILE;
-
-extern FILE* stdin;
-extern FILE* stdout;
-extern FILE* stderr;
-
-int atoi(const char*);
-void* calloc(size_t, size_t);
-void exit(int);
-int fclose(FILE*);
-int fprintf(FILE*, const char*, ...);
-char* fgets(char*, int, FILE*);
-FILE* fopen(const char*, const char*);
-int getchar(void);
-int isalnum(int);
-int isalpha(int);
-int isdigit(int);
-int isspace(int);
-void* memcpy(void*, const void*, size_t);
-void* memmove(void*, const void*, size_t);
-void* memset(void*, int, size_t);
-int printf(const char*, ...);
-void* realloc(void*, size_t);
-int sprintf(char*, const char*, ...);
-int strcmp(const char*, const char*);
-size_t strlen(const char*);
-int strncmp(const char*, const char*, size_t);
-char* strndup(const char*, size_t);
-char* strstr(const char*, const char*);
-
-#include <stdarg.h>
-
-int vfprintf(FILE*, const char*, va_list);
-
-#define F_OK 0
-#define R_OK 4
-int access(const char*, int);
-
-#define PATH_MAX 4096
-
-typedef long ssize_t;
-ssize_t readlink(const char*, char*, size_t);
-char* dirname(char*);
-
-#define BOOL int
-#define TRUE 1
-#define FALSE 0