File: mac.h

package info (click to toggle)
graywolf 0.1.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 6,424 kB
  • sloc: ansic: 84,358; sh: 216; awk: 36; makefile: 22
file content (27 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ----------------------------------------------------------------- 
FILE:	    mac.h                                       
CONTENTS:   Definitions for directing conditional compiles on the Mac.
DATE:	    May 2, 1990 
	    
REVISIONS:  
----------------------------------------------------------------- */
#ifndef MAC_H
#define MAC_H


#ifdef THINK_C

#include <limits.h>
#include <float.h>
#define ALTERNATE
#define DEBUG
/* #define CLEANUP_C */
#define SIGUSR1 1

#endif /* THINK_C */

#ifdef _AUX_SOURCE
#define NBPG	4096	/* number of bytes per page */
#endif /* _AUX_SOURCE */

#endif /* MAC_H */