diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-05-31 01:56:00 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-05-31 01:56:00 -0700 |
commit | f3c69b66279e228b6a852e127193c953fdd27951 (patch) | |
tree | 6b873130a545f4bea54160f1feafc465db683a07 /gzio.h | |
parent | 6802740f63fdd37078bf8b7c90772f97460840ad (diff) | |
download | txr-f3c69b66279e228b6a852e127193c953fdd27951.tar.gz txr-f3c69b66279e228b6a852e127193c953fdd27951.tar.bz2 txr-f3c69b66279e228b6a852e127193c953fdd27951.zip |
gzio: fix multiple definition of gzio_stream_s.
Failed on Cygwin.
* gzio.c (gzio_stream_s): Variable defined here.
* gzio.h (gzio_stream_s): Turn to declaration with extern.
Diffstat (limited to 'gzio.h')
-rw-r--r-- | gzio.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -val gzio_stream_s; +extern val gzio_stream_s; void gzio_init(void); gzFile w_gzopen_mode(const wchar_t *wname, const wchar_t *wmode, const struct stdio_mode m, val self); |