remove signal.h
parent
dc1ca31071
commit
62f54d9d65
2
fns.h
2
fns.h
|
@ -1,5 +1,4 @@
|
||||||
// <signal.h>
|
// <signal.h>
|
||||||
/*
|
|
||||||
void sigaction();
|
void sigaction();
|
||||||
void sigemptyset();
|
void sigemptyset();
|
||||||
|
|
||||||
|
@ -9,4 +8,3 @@ void* memmove();
|
||||||
void* memset();
|
void* memset();
|
||||||
unsigned long strlen(const char*);
|
unsigned long strlen(const char*);
|
||||||
char* strerror(int);
|
char* strerror(int);
|
||||||
*/
|
|
||||||
|
|
|
@ -7,7 +7,6 @@ CommonCHeaders = '
|
||||||
#include <stdio.h> // TODO remove all these includes, define all function signatures and types manually
|
#include <stdio.h> // TODO remove all these includes, define all function signatures and types manually
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "fns.h"
|
#include "fns.h"
|
||||||
#include <signal.h>
|
|
||||||
#include <stdarg.h> // for va_list
|
#include <stdarg.h> // for va_list
|
||||||
#include <inttypes.h> // int64_t etc
|
#include <inttypes.h> // int64_t etc
|
||||||
#include <string.h> // memcpy
|
#include <string.h> // memcpy
|
||||||
|
@ -23,9 +22,6 @@ CommonCHeaders = '
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__CYGWIN__) && !defined(_WIN32)
|
|
||||||
#error Cygwin is not supported, please use MinGW or Visual Studio.
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
Loading…
Reference in New Issue