xref: /csrg-svn/sys/pmax/stand/libsa/gets.c (revision 63224)
156833Sralph /*-
2*63224Sbostic  * Copyright (c) 1992, 1993
3*63224Sbostic  *	The Regents of the University of California.  All rights reserved.
456833Sralph  *
556833Sralph  * This code is derived from software contributed to Berkeley by
656833Sralph  * Ralph Campbell.
756833Sralph  *
856833Sralph  * %sccs.include.redist.c%
956833Sralph  *
10*63224Sbostic  *	@(#)gets.c	8.1 (Berkeley) 06/10/93
1156833Sralph  */
1256833Sralph 
1356833Sralph #include <pmax/stand/dec_prom.h>
1456833Sralph 
1556833Sralph char *
gets(s)1656833Sralph gets(s)
1756833Sralph 	char *s;
1856833Sralph {
1956833Sralph 	return (callv->gets(s));
2056833Sralph }
21