diff options
author | 2004-01-11 21:39:51 +0000 | |
---|---|---|
committer | 2004-01-11 21:39:51 +0000 | |
commit | cc4d0b072d5b36607e697a95f76a53bcb8e10b24 (patch) | |
tree | 5ccb684d3bd15bed8fd9695f335b042cc7bf2aa9 /lib/libc/stdio/glue.h | |
parent | in the nexthop imsgs use struct bgpd_addr for the data part instead of (diff) | |
download | wireguard-openbsd-cc4d0b072d5b36607e697a95f76a53bcb8e10b24.tar.xz wireguard-openbsd-cc4d0b072d5b36607e697a95f76a53bcb8e10b24.zip |
__sglue should be extern; from art@
Diffstat (limited to 'lib/libc/stdio/glue.h')
-rw-r--r-- | lib/libc/stdio/glue.h | 6 |
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; |