summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmadeusz Sławiński <amade@asmblr.net>2012-01-05 02:53:20 +0100
committerAmadeusz Sławiński <amade@asmblr.net>2014-07-24 11:50:47 +0200
commit41554bc6a67ad69e9849c929fdca2be792b72890 (patch)
treed654b804d0dabbf99cf1fcbd532b1bbef3b716d9
parentdba8409a17ef2d6e2bd9da429488c791f7801786 (diff)
downloadscreen-41554bc6a67ad69e9849c929fdca2be792b72890.tar.gz
delete #ifdef SYSV from os.h
it was not uased and all of the defines except from killpg were unused anyway due to previous changes
-rw-r--r--src/os.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/os.h b/src/os.h
index f799e15..e8b6c4e 100644
--- a/src/os.h
+++ b/src/os.h
@@ -99,14 +99,6 @@ extern int errno;
# define ftruncate(fd, s) chsize(fd, s)
#endif
-#ifdef SYSV
-# define index strchr
-# define rindex strrchr
-# define bzero(poi,len) memset(poi,0,len)
-# define bcmp memcmp
-# define killpg(pgrp,sig) kill( -(pgrp), sig)
-#endif
-
#ifndef HAVE_GETCWD
# define getcwd(b,l) getwd(b)
#endif