Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4349 Serge 1
/* This is a dummy  file, not customized for any
2
   particular system.  If there is a param.h in libc/sys/SYSDIR/sys,
3
   it will override this one.  */
4
 
5
#ifndef _SYS_PARAM_H
6
# define _SYS_PARAM_H
7
 
8
#include 
9
#include 
10
#include 
11
 
12
#ifndef HZ
13
# define HZ (60)
14
#endif
15
#ifndef NOFILE
16
# define NOFILE	(60)
17
#endif
18
#ifndef PATHSIZE
19
# define PATHSIZE (1024)
20
#endif
21
 
22
#define MAX(a,b) ((a) > (b) ? (a) : (b))
23
#define MIN(a,b) ((a) < (b) ? (a) : (b))
24
 
25
#endif