Source:NetHack 3.0.0/tosconf.h

From NetHackWiki
Revision as of 05:37, 4 March 2008 by Kernigh bot (talk | contribs) (NetHack 3.0.0/tosconf.h moved to Source:NetHack 3.0.0/tosconf.h: Robot: moved page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Below is the full text to tosconf.h from the source code of NetHack 3.0.0. To link to a particular line, write [[NetHack 3.0.0/tosconf.h#line123]], for example.

Warning! This is the source code from an old release. For the latest release, see Source code

The NetHack General Public License applies to screenshots, source code and other content from NetHack.

This content was modified from the original NetHack source code distribution (by splitting up NetHack content between wiki pages, and possibly further editing). See the page history for a list of who changed it, and on what dates.

1.    /*	SCCS Id: @(#)tosconf.h	3.0	88/07/21
2.    /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
3.    /* NetHack may be freely redistributed.  See license for details. */
4.    
5.    #ifdef TOS
6.    #ifndef TOSCONF_H
7.    #define TOSCONF_H
8.    
9.    #define MSDOS		/* must be defined to allow some inclusions */
10.   
11.   #define FCMASK	0x8000
12.   
13.   #ifdef UNIXDEBUG
14.   #define O_BINARY	0
15.   #define remove(x)	unlink(x)
16.   #endif
17.   
18.   #define Rand() rand()
19.   #define Srand() srand()
20.   
21.   #include "msdos.h"
22.   #include "pcconf.h"	    /* remainder of stuff is same as the PC */
23.   
24.   #endif /* TOSCONF_H /* */
25.   #endif /* TOS /* */