From c29f424e0195f0226d1368e3f3da9a417656e140 Mon Sep 17 00:00:00 2001 From: Stefan Farfeleder Date: Fri, 13 May 2005 21:12:34 +0000 Subject: [PATCH] The header glue.h should provide just a declaration for the variable __sglue, not a definition. PR: 80378 Submitted by: John Engelhart MFC after: 1 week --- lib/libc/stdio/glue.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/libc/stdio/glue.h b/lib/libc/stdio/glue.h index 79e1cd40446..a6df6fd1228 100644 --- a/lib/libc/stdio/glue.h +++ b/lib/libc/stdio/glue.h @@ -45,4 +45,5 @@ struct glue { struct glue *next; int niobs; FILE *iobs; -} __sglue; +}; +extern struct glue __sglue;