Source:NetHack 3.6.1/include/beconf.h

From NetHackWiki
Revision as of 09:29, 12 May 2018 by DizzyBot (talk | contribs) (beep boop)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Below is the full text to beconf.h from the source code of NetHack 3.6.1. To link to a particular line, write [[Source:NetHack 3.6.1/include/beconf.h#line123]], for example.

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.

 /* NetHack 3.6	beconf.h	$NHDT-Date: 1432512783 2015/05/25 00:13:03 $  $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
 /* Copyright (c) Dean Luick 1996.	*/
 /* NetHack may be freely redistributed.  See license for details. */
 
 /* Configuration for Be Inc.'s BeOS */
 
 #ifndef BECONF_H
 #define BECONF_H
 
 /*
  * We must use UNWIDENED_PROTOTYPES because we mix C++ and C.
  */
 
 #define index strchr
 #define rindex strrchr
 #define Rand rand /* Be should have a better rand function! */
 #define tgetch getchar
 #define FCMASK 0666
 #define PORT_ID "BeOS"
 #define TEXTCOLOR
 #define POSIX_TYPES
 #define SIG_RET_TYPE __signal_func_ptr
 
 #include <time.h>   /* for time_t */
 #include <unistd.h> /* for lseek() */
 
 /* could go in extern.h, under bemain.c (or something..) */
 void regularize(char *);
 
 /* instead of including system.h... */
 #include <string.h>
 #include <stdlib.h>
 #include <termcap.h>
 
 #endif /* BECONF_H */