Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / lib / libsa / globals.c
blobd86cfa186a3ce0ea64aa2b9fa7948b943e76aa46
1 /* $NetBSD: globals.c,v 1.7 2003/03/27 12:28:58 drochner Exp $ */
3 /*
4 * globals.c:
6 * global variables should be separate, so nothing else
7 * must be included extraneously.
8 */
10 #include <sys/param.h>
11 #include <netinet/in.h>
12 #include <netinet/in_systm.h>
14 #include "stand.h"
15 #include "net.h"
17 u_char bcea[6] = BA; /* broadcast ethernet address */
19 char rootpath[FNAME_SIZE]; /* root mount path */
20 char bootfile[FNAME_SIZE]; /* bootp says to boot this */
21 char hostname[FNAME_SIZE]; /* our hostname */
22 char *fsmod = "ffs"; /* guessed file system module name */
23 char *fsmod2; /* a requisite module */
24 struct in_addr myip; /* my ip address */
25 struct in_addr rootip; /* root ip address */
26 struct in_addr gateip; /* swap ip address */
27 n_long netmask = 0xffffff00; /* subnet or net mask */