extern's added for fsck
authorSam Leffler <sam@ucbvax.Berkeley.EDU>
Tue, 16 Nov 1982 04:30:12 +0000 (20:30 -0800)
committerSam Leffler <sam@ucbvax.Berkeley.EDU>
Tue, 16 Nov 1982 04:30:12 +0000 (20:30 -0800)
SCCS-vsn: sys/sys/systm.h 4.32

usr/src/sys/sys/systm.h

index e520047..17c9a90 100644 (file)
@@ -1,4 +1,4 @@
-/*     systm.h 4.31    82/10/31        */
+/*     systm.h 4.32    82/11/15        */
 
 /*
  * Random set of variables
 
 /*
  * Random set of variables
@@ -6,8 +6,8 @@
  * routine.
  */
 int    hz;                     /* frequency of the clock */
  * routine.
  */
 int    hz;                     /* frequency of the clock */
-char   version[];              /* system version */
 int    hand;                   /* current index into coremap used by daemon */
 int    hand;                   /* current index into coremap used by daemon */
+extern char version[];         /* system version */
 
 /*
  * Nblkdev is the number of entries
 
 /*
  * Nblkdev is the number of entries
@@ -76,13 +76,14 @@ extern struct sysent
        int     (*sy_call)();           /* handler */
 } sysent[];
 
        int     (*sy_call)();           /* handler */
 } sysent[];
 
-char   vmmap[];                /* poor name! */
 int    noproc;                 /* no one is running just now */
 char   *panicstr;
 int    wantin;
 int    boothowto;              /* reboot flags, from console subsystem */
 int    selwait;
 
 int    noproc;                 /* no one is running just now */
 char   *panicstr;
 int    wantin;
 int    boothowto;              /* reboot flags, from console subsystem */
 int    selwait;
 
+extern char vmmap[];           /* poor name! */
+
 /* casts to keep lint happy */
 #define        insque(q,p)     _insque((caddr_t)q,(caddr_t)p)
 #define        remque(q)       _remque((caddr_t)q)
 /* casts to keep lint happy */
 #define        insque(q,p)     _insque((caddr_t)q,(caddr_t)p)
 #define        remque(q)       _remque((caddr_t)q)