summaryrefslogtreecommitdiff
path: root/sys/src/cmd/unix/drawterm/include/unix.h
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2013-11-23 01:05:33 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2013-11-23 01:05:33 +0100
commit2f9ae0f8ac8610e13ced184847b57b87fe5db580 (patch)
treef9ad2223d518585a2cfe9ea1c73e1e37d07bf637 /sys/src/cmd/unix/drawterm/include/unix.h
parentea5797c0731203c09ec5fb7172e77eab2750f1a9 (diff)
removing (outdated) drawterm
drawterm is much better maintained by russ cox, so removing this outdated copy. for a more recent version, go to: http://swtch.com/drawterm/
Diffstat (limited to 'sys/src/cmd/unix/drawterm/include/unix.h')
-rw-r--r--sys/src/cmd/unix/drawterm/include/unix.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/sys/src/cmd/unix/drawterm/include/unix.h b/sys/src/cmd/unix/drawterm/include/unix.h
deleted file mode 100644
index 862d9930d..000000000
--- a/sys/src/cmd/unix/drawterm/include/unix.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#undef _FORTIFY_SOURCE /* stupid ubuntu warnings */
-#define __BSD_VISIBLE 1 /* FreeBSD 5.x */
-#define _BSD_SOURCE 1
-#define _NETBSD_SOURCE 1 /* NetBSD */
-#define _SVID_SOURCE 1
-#if !defined(__APPLE__) && !defined(__OpenBSD__)
-# define _XOPEN_SOURCE 1000
-# define _XOPEN_SOURCE_EXTENDED 1
-#endif
-#define _LARGEFILE64_SOURCE 1
-#define _FILE_OFFSET_BITS 64
-
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <math.h>
-#include <fcntl.h>
-#include <setjmp.h>
-#include <stddef.h>
-#include <time.h>
-#include <assert.h>
-#include <unistd.h>
-#include <stdarg.h>
-#include <inttypes.h>
-#include <ctype.h>
-#include <errno.h>
-#ifdef PTHREAD
-#include <pthread.h>
-#endif
-
-typedef long long p9_vlong;
-typedef unsigned long long p9_uvlong;
-typedef uintptr_t uintptr;