Changeset - r1290:04f2d9132d3b
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-02-04 19:38:04
tron@openttd.org
(svn r1794) Make the dedicated server compile again under MorphOS (tokai)
1 file changed with 5 insertions and 5 deletions:
0 comments (0 inline, 0 general)
dedicated.c
Show inline comments
 
@@ -32,11 +32,11 @@
 
#	define STDIN 0  /* file descriptor for standard input */
 
#endif
 
#ifdef __MORPHOS__
 
/*  voids the fork, option will be disabled for morphos build anyway, because MorphOS
 
 *  doesn't support forking (could only implemented with lots of code changes here).
 
 */
 
int morphos_dummy_fork() { return -1; }
 
#define fork morphos_dummy_fork
 
/* Voids the fork, option will be disabled for MorphOS build anyway, because
 
 * MorphOS doesn't support forking (could only implemented with lots of code
 
 * changes here). */
 
int fork(void) { return -1; }
 
int dup2(int oldd, int newd) { return -1; }
 
#endif
 

	
 
// This file handles all dedicated-server in- and outputs
0 comments (0 inline, 0 general)