drawterm/include/dtos.h

16 lines
392 B
C
Raw Normal View History

2006-05-21 19:02:05 +02:00
#if defined(linux) || defined(IRIX) || defined(SOLARIS) || defined(OSF1) || defined(__FreeBSD__) || defined(__APPLE__) || defined(__NetBSD__) || defined(__sun) || defined(sun)
2005-08-08 14:50:13 +02:00
# include "unix.h"
# ifdef __APPLE__
# define panic dt_panic
# endif
#elif defined(WINDOWS)
# include "9windows.h"
2005-11-08 02:35:49 +01:00
# define main mymain
2005-08-08 14:50:13 +02:00
#else
# error "Define an OS"
#endif
2005-12-30 00:41:14 +01:00
#ifdef IRIX
typedef int socklen_t;
#endif