Airoha M0 BLE API
1.0.5.4
param.h
1
/* This is a dummy <sys/param.h> 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
9
#ifndef HZ
10
# define HZ (60)
11
#endif
12
#ifndef NOFILE
13
# define NOFILE (60)
14
#endif
15
#ifndef PATHSIZE
16
# define PATHSIZE (1024)
17
#endif
18
19
#define MAX(a,b) ((a) > (b) ? (a) : (b))
20
#define MIN(a,b) ((a) < (b) ? (a) : (b))
21
22
#endif
source
Porting
sys
param.h
Generated by
1.8.13