diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-23 15:50:47 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-23 15:50:47 +0000 |
commit | 1004a67afd72c98497c5e002667fe398b8380063 (patch) | |
tree | 9e8693d4908056b7760a44207f32ced79cfd5fd8 /perl.h | |
parent | c94150eb94dae657a29e5be62810f7d658edbbb4 (diff) | |
download | perl-1004a67afd72c98497c5e002667fe398b8380063.tar.gz |
The type needs to be visible to protos.
p4raw-id: //depot/perl@7834
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -2819,6 +2819,16 @@ typedef void *Thread; #define PERL_CKDEF(s) OP *s (pTHX_ OP *o); #define PERL_PPDEF(s) OP *s (pTHX); +#ifdef SOCKS_64BIT_BUG +typedef struct __s64_iobuffer { + struct __s64_iobuffer *next, *last; /* Queue pointer */ + PerlIO *fp; /* Assigned file pointer */ + int cnt; /* Buffer counter */ + int size; /* Buffer size */ + int *buffer; /* The buffer */ +} S64_IOB; +#endif + #include "proto.h" #ifdef PERL_OBJECT @@ -3443,16 +3453,6 @@ typedef struct am_table_short AMTS; # include <libutil.h> /* setproctitle() in some FreeBSDs */ #endif -#ifdef SOCKS_64BIT_BUG -typedef struct __s64_iobuffer { - struct __s64_iobuffer *next, *last; /* Queue pointer */ - PerlIO *fp; /* Assigned file pointer */ - int cnt; /* Buffer counter */ - int size; /* Buffer size */ - int *buffer; /* The buffer */ -} S64_IOB; -#endif - /* and finally... */ #define PERL_PATCHLEVEL_H_IMPLICIT #include "patchlevel.h" |