From: Ben Gras Date: Fri, 26 Aug 2005 12:00:43 +0000 (+0000) Subject: Path config, so they're not hard-coded separately in commands X-Git-Tag: v3.1.0~266 X-Git-Url: http://zhaoyanbai.com/repos/README?a=commitdiff_plain;h=d48770fcb5c545da4f1242927a94b437e2372332;p=minix.git Path config, so they're not hard-coded separately in commands --- diff --git a/include/minix/paths.h b/include/minix/paths.h new file mode 100644 index 000000000..2ab0f57ea --- /dev/null +++ b/include/minix/paths.h @@ -0,0 +1,12 @@ +#ifndef _MINIX_PATHS_H +#define _MINIX_PATHS_H 1 + +#define _PATH_DHCPCONF "/etc/dhcp.conf" +#define _PATH_DHCPPID "/usr/run/dhcpd.pid" +#define _PATH_DHCPCACHE "/usr/adm/dhcp.cache" +#define _PATH_DHCPPOOL "/usr/adm/dhcp.pool" + +#define _PATH_WTMP "/usr/adm/wtmp" +#define _PATH_LASTLOG "/usr/adm/lastlog" + +#endif