add seekptr struct for TELL and SEEK
authorKirk McKusick <mckusic@ucbvax.Berkeley.EDU>
Wed, 17 Jun 1981 15:01:33 +0000 (07:01 -0800)
committerKirk McKusick <mckusic@ucbvax.Berkeley.EDU>
Wed, 17 Jun 1981 15:01:33 +0000 (07:01 -0800)
SCCS-vsn: usr.bin/pascal/libpc/h00vars.h 1.9

usr/src/usr.bin/pascal/libpc/h00vars.h

index a7afb14..8b3db7a 100644 (file)
@@ -1,6 +1,6 @@
 /* Copyright (c) 1979 Regents of the University of California */
 
 /* Copyright (c) 1979 Regents of the University of California */
 
-/* sccsid[] = "@(#)h00vars.h 1.8 %G%"; */
+/* sccsid[] = "@(#)h00vars.h 1.9 %G%"; */
 
 #include <stdio.h>
 #include "whoami.h"
 
 #include <stdio.h>
 #include "whoami.h"
@@ -127,3 +127,10 @@ extern long                _filefre;       /* last used entry in _actfile */
 extern struct iorechd  input;
 extern struct iorechd  output;
 extern struct iorechd  _err;
 extern struct iorechd  input;
 extern struct iorechd  output;
 extern struct iorechd  _err;
+
+/*
+ * seek pointer struct for TELL, SEEK extensions
+ */
+struct seekptr {
+       long    cnt;
+};