summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/glue.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-01-11 21:39:52 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-01-11 21:39:52 +0000
commit01faae005fd2db7ecc8493455109a48fd8ae5610 (patch)
treec7318f3f7e411c0982c52fa42e068f66f076b758 /lib/libc/stdio/glue.h
parent387cd1aef7a003ef7eebeba9aa7f967cd8522376 (diff)
__sglue should be extern; from art@
Diffstat (limited to 'lib/libc/stdio/glue.h')
-rw-r--r--lib/libc/stdio/glue.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/stdio/glue.h b/lib/libc/stdio/glue.h
index 2ac5ad051ab..73cef63273b 100644
--- a/lib/libc/stdio/glue.h
+++ b/lib/libc/stdio/glue.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: glue.h,v 1.3 2003/06/02 20:18:37 millert Exp $ */
+/* $OpenBSD: glue.h,v 1.4 2004/01/11 21:39:51 millert Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -40,4 +40,6 @@ struct glue {
struct glue *next;
int niobs;
FILE *iobs;
-} __sglue;
+};
+
+extern struct glue __sglue;