4.4BSD snapshot (revision 8.1); add 1993 to copyright
[unix-history] / usr / src / sys / stand.att / cat.c
/*
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
* %sccs.include.redist.c%
*
* @(#)cat.c 8.1 (Berkeley) %G%
*/
main()
{
register int c, fd;
fd = getfile("File", 0);
while ((c = getc(fd)) >= 0)
putchar(c);
exit(0);
}