date and time created 91/04/16 14:59:05 by bostic
[unix-history] / usr / src / usr.bin / pascal / libpc / unixio.h
CommitLineData
7878f925
KB
1(*
2 * Copyright (c) 1979 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 *
7 * @(#)unixio.h 1.2 (Berkeley) %G%
8 *)
309a815e
KM
9
10const
7878f925 11sccsid = '@(#)unixio.h 1.2 %G%';
309a815e
KM
12
13type
14fileptr = record
15 cnt :integer
16 end;
17
18function TELL(
19var fptr :text)
20{returns} :fileptr;
21
22 external;
23
24procedure SEEK(
25 var fptr :text;
26 var cnt :fileptr);
27
28 external;
29
30procedure APPEND(
31 var fptr :text);
32
33 external;