summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_tc.c
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2005-09-07 10:06:14 +0000
committerobrien <obrien@FreeBSD.org>2005-09-07 10:06:14 +0000
commitb888392910bbf46a7bf35f9715822cfd277e96a9 (patch)
tree419df19dbf78d24314ca254786a51b47f4cc0f57 /sys/kern/kern_tc.c
parent34dc93c2f2a2e67b9f17f39ad8552571a143e782 (diff)
downloadFreeBSD-src-b888392910bbf46a7bf35f9715822cfd277e96a9.zip
FreeBSD-src-b888392910bbf46a7bf35f9715822cfd277e96a9.tar.gz
Forward declaring static variables as extern is invalid ISO-C. Now that
GCC can properly handle forward static declarations, do this properly.
Diffstat (limited to 'sys/kern/kern_tc.c')
-rw-r--r--sys/kern/kern_tc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c
index f9b54a0..fb06e18 100644
--- a/sys/kern/kern_tc.c
+++ b/sys/kern/kern_tc.c
@@ -61,7 +61,7 @@ struct timehands {
struct timehands *th_next;
};
-extern struct timehands th0;
+static struct timehands th0;
static struct timehands th9 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 0, &th0};
static struct timehands th8 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 0, &th9};
static struct timehands th7 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 0, &th8};
OpenPOWER on IntegriCloud