blob: 180c63e965e14f4a41ec41f501a543b839c7dd13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* linux */
#define SYSCONFDIR "/system/etc/dhcpcd"
#define SBINDIR "/system/etc/dhcpcd"
#define LIBEXECDIR "/system/etc/dhcpcd"
#define DBDIR "/data/misc/dhcp"
#define RUNDIR "/data/misc/dhcp"
#include "compat/arc4random.h"
#include "compat/closefrom.h"
#include "compat/strlcpy.h"
#include "compat/getline.h"
#ifndef MAX
#define MAX(a,b) ((a) >= (b) ? (a) : (b))
#endif
#ifndef MIN
#define MIN(a,b) ((a) <= (b) ? (a) : (b))
#endif
|