remove unused struct Outrec
Gurusamy Sarathy [Sun, 31 Oct 1999 09:13:41 +0000 (09:13 +0000)]
p4raw-id: //depot/perl@4498

perl.h

diff --git a/perl.h b/perl.h
index 372c0a4..0d5a613 100644 (file)
--- a/perl.h
+++ b/perl.h
@@ -1293,7 +1293,6 @@ typedef struct padop PADOP;
 typedef struct pvop PVOP;
 typedef struct loop LOOP;
 
-typedef struct Outrec Outrec;
 typedef struct interpreter PerlInterpreter;
 typedef struct sv SV;
 typedef struct av AV;
@@ -1850,12 +1849,6 @@ typedef I32 CHECKPOINT;
 #define CLUMP_2UV(iv)  ((iv) < 0 ? 0 : (UV)(iv))
 #define CLUMP_2IV(uv)  ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
 
-struct Outrec {
-    I32                o_lines;
-    char       *o_str;
-    U32                o_len;
-};
-
 #ifndef MAXSYSFD
 #   define MAXSYSFD 2
 #endif