home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Club Elmshorn Atari PD
/
CCE_PD.iso
/
pc
/
0400
/
CCE_0423.ZIP
/
CCE_0423.PD
/
INCLUD83.ZOO
/
param.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-07-20
|
436b
|
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 */