From: Jarkko Hietaniemi Date: Thu, 23 Nov 2000 15:50:47 +0000 (+0000) Subject: The type needs to be visible to protos. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1004a67afd72c98497c5e002667fe398b8380063;p=p5sagit%2Fp5-mst-13.2.git The type needs to be visible to protos. p4raw-id: //depot/perl@7834 --- diff --git a/perl.h b/perl.h index f17f3a9..bb09602 100644 --- a/perl.h +++ b/perl.h @@ -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 /* 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"