Subversion Repositories HelenOS

Rev

Rev 2787 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2787 Rev 4692
Line 34... Line 34...
34
 *
34
 *
35
 *  @(#)input.h 8.1 (Berkeley) 5/31/93
35
 *  @(#)input.h 8.1 (Berkeley) 5/31/93
36
 */
36
 */
37
 
37
 
38
/** @addtogroup tetris
38
/** @addtogroup tetris
39
 * @{
39
 * @{
40
 */
40
 */
41
/** @file
41
/** @file
42
 */
42
 */
43
 
43
 
44
int rwait(struct timeval *);
44
extern int rwait(struct timeval *);
45
int tgetchar(void);
45
extern int tgetchar(void);
46
void    tsleep(void);
46
extern void tsleep(void);
47
 
47
 
48
/** @}
48
/** @}
49
 */
49
 */
50
 
-