summaryrefslogtreecommitdiff
path: root/src/sys-process.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys-process.h')
-rw-r--r--src/sys-process.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/sys-process.h b/src/sys-process.h
deleted file mode 100644
index 53df76e7..00000000
--- a/src/sys-process.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef _SYS_PROCESS_H_
-#define _SYS_PROCESS_H_
-
-#ifdef _WIN32
-#include <process.h>
-#define pid_t int
-/* win32 has no fork() */
-#define kill(x, y) do { } while (0)
-#define getpid() 0
-
-#else
-#include <sys/wait.h>
-#include <unistd.h>
-#endif
-
-#endif
-