home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
mint
/
distri~1
/
updates
/
incobj30.zoo
/
level30.zoo
/
usr
/
include
/
param.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-05-15
|
436 b
|
16 lines
#ifndef _PARAM_H
#define _PARAM_H
#define MAXPATHLEN 128 /* same as FILENAME_MAX in stdio.h */
#define NOFILE 20 /* same as OPEN_MAX in limits.h */
#ifdef __MINT__
# define HZ 200 /* ticks/second reported by times() */
# define NCARGS 1024 /* actually, we don't limit this */
#else
# define HZ 60 /* ticks/second reported by times() */
# define NCARGS 126 /* max. no. of characters in argv */
#endif
#endif /* _PARAM_H */