repair declerations to satisfy -fno-common
authorderaadt <deraadt@openbsd.org>
Fri, 29 Jan 2021 16:22:34 +0000 (16:22 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 29 Jan 2021 16:22:34 +0000 (16:22 +0000)
ok kettenis

sys/arch/alpha/stand/boot/boot.c
sys/arch/alpha/stand/boot/conf.c
sys/arch/alpha/stand/netboot/dev_net.c

index 228b130..6aae43d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: boot.c,v 1.28 2020/05/26 13:47:27 deraadt Exp $       */
+/*     $OpenBSD: boot.c,v 1.29 2021/01/29 16:22:34 deraadt Exp $       */
 /*     $NetBSD: boot.c,v 1.10 1997/01/18 01:58:33 cgd Exp $    */
 
 /*
@@ -59,7 +59,7 @@ extern char bootprog_name[];
 
 struct bootinfo_v1 bootinfo_v1;
 
-paddr_t ptbr_save;
+extern paddr_t ptbr_save;
 
 int debug;
 
index 608a4b6..5f90dec 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: conf.c,v 1.6 2003/06/02 23:27:44 millert Exp $        */
+/*     $OpenBSD: conf.c,v 1.7 2021/01/29 16:22:34 deraadt Exp $        */
 /*     $NetBSD: conf.c,v 1.3 1995/11/23 02:39:31 cgd Exp $     */
 
 /*
@@ -42,8 +42,6 @@
 
 int    diskopen(struct open_file *, ...);      /* XXX */
 
-int    errno;
-
 struct devsw devsw[] = {
        { "disk", diskstrategy, diskopen, diskclose, diskioctl }, /*0*/
 };
index 46e88fd..dce364b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: dev_net.c,v 1.4 2014/07/13 15:31:20 mpi Exp $ */
+/*     $OpenBSD: dev_net.c,v 1.5 2021/01/29 16:22:36 deraadt Exp $     */
 /*     $NetBSD: dev_net.c,v 1.4 1997/04/06 08:41:24 cgd Exp $  */
 
 /*
@@ -74,19 +74,6 @@ extern int nfs_root_node[];  /* XXX - get from nfs_mount() */
 u_char bcea[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
 #endif
 
-struct in_addr myip;           /* my ip address */
-struct in_addr rootip;         /* root ip address */
-struct in_addr gateip;         /* swap ip address */
-u_int32_t      netmask;                /* subnet or net mask */
-
-char rootpath[FNAME_SIZE];
-
-int hostnamelen;
-char hostname[FNAME_SIZE];
-
-int domainnamelen;
-char domainname[FNAME_SIZE];
-
 /*
  * Local things...
  */