xref: /original-bsd/games/trek/cgetc.c (revision 6219b5e8)
1 #ifndef lint
2 static char sccsid[] = "@(#)cgetc.c	1.1	(Berkeley) 05/27/83";
3 #endif not lint
4 
5 # include	<stdio.h>
6 
7 char	cgetc(i)
8 int	i;
9 {
10 	return ( getchar() );
11 }
12