xref: /original-bsd/games/trek/cgetc.c (revision 3b6250d9)
1 /*
2  * Copyright (c) 1980 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)cgetc.c	5.4 (Berkeley) 06/01/90";
10 #endif /* not lint */
11 
12 # include	<stdio.h>
13 
14 char	cgetc(i)
15 int	i;
16 {
17 	return ( getchar() );
18 }
19