diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-05-13 21:12:34 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-05-13 21:12:34 +0000 |
commit | 1dcdbc6b45a48160d41aa183810f5f4a3f859cc4 (patch) | |
tree | 456eae8d8031188b07daf4f90e5ef1bc838d68ff | |
parent | a3047efe51dd6b7bd67ef7123c9b143d3dec9deb (diff) | |
download | FreeBSD-src-1dcdbc6b45a48160d41aa183810f5f4a3f859cc4.zip FreeBSD-src-1dcdbc6b45a48160d41aa183810f5f4a3f859cc4.tar.gz |
The header glue.h should provide just a declaration for the variable
__sglue, not a definition.
PR: 80378
Submitted by: John Engelhart <johne@zang.com>
MFC after: 1 week
-rw-r--r-- | lib/libc/stdio/glue.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/glue.h b/lib/libc/stdio/glue.h index 79e1cd4..a6df6fd 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; |