aboutsummaryrefslogtreecommitdiff
path: root/streamout13~.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2003-03-03 20:39:47 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2003-03-03 20:39:47 +0000
commit23da6252985418ada3083303f3847817a23044fb (patch)
treed61f874b6efa3c648ec7957c940fd35ca5290fc9 /streamout13~.c
parent8dd384ea4f00ebe9f99297fc4072aa6cb19dec76 (diff)
added UNIX and unix defines
svn path=/trunk/externals/ext13/; revision=451
Diffstat (limited to 'streamout13~.c')
-rw-r--r--streamout13~.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/streamout13~.c b/streamout13~.c
index 7ce7681..22ad6f8 100644
--- a/streamout13~.c
+++ b/streamout13~.c
@@ -3,7 +3,7 @@
#include <sys/types.h>
#include <string.h>
-#ifdef UNIX
+#if defined(UNIX) || defined(unix)
#include <sys/errno.h>
#include <sys/socket.h>
#include <netinet/in.h>
@@ -23,7 +23,7 @@
static void sys_sockerror(char *s)
{
-#ifdef UNIX
+#if defined(UNIX) || defined(unix)
int err = errno;
#else
int err = WSAGetLastError();
@@ -36,7 +36,7 @@ static void sys_sockerror(char *s)
static void sys_closesocket(int fd)
{
-#ifdef UNIX
+#if defined(UNIX) || defined(unix)
close(fd);
#endif
#ifdef NT