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