Changeset 56 for abuse/trunk/src/maker.cpp
- Timestamp:
- Mar 2, 2008, 3:03:36 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/maker.cpp
r2 r56 1 /* 2 * Abuse - dark 2D side-scrolling platform game 3 * Copyright (c) 1995 Crack dot Com 4 * 5 * This software was released into the Public Domain. As with most public 6 * domain software, no warranty is made or implied by Crack dot Com or 7 * Jonathan Clark. 8 */ 9 10 #include "config.h" 11 12 #include <unistd.h> 13 14 #include <stdio.h> 15 #include <string.h> 16 #include <stdlib.h> 17 #ifdef __WATCOMC__ 18 # include <sys\types.h> 19 # include <direct.h> 20 # define make_dir(dir) mkdir(dir) 21 #else 22 # include <sys/stat.h> 23 # define make_dir(dir) mkdir(dir,511) 24 #endif 25 1 26 #define NO_LIBS 1 2 #include <unistd.h>3 27 #include "lisp.c" 4 28 #include "trig.c" 5 29 #include "lisp_gc.c" 6 30 #include "lisp_opt.c" 7 8 9 #include <stdio.h>10 #include <string.h>11 #include <stdlib.h>12 #ifdef __WATCOMC__13 #include <sys\types.h>14 #include <direct.h>15 #define make_dir(dir) mkdir(dir)16 #else17 18 #include <sys/stat.h>19 #define make_dir(dir) mkdir(dir,511)20 #endif21 22 23 31 24 32 enum { LINUX, WATCOM, AIX, SUN, SGI };
Note: See TracChangeset
for help on using the changeset viewer.