Oops -- this wasn't in the repo.
[super-star-trek.git] / sstlinux.h
1 #ifndef __SSTLINUX_H
2 #define __SSTLINUX_H
3
4 int c_printf (char *format, ... );
5 void sound(unsigned int);
6 void nosound(void);
7
8 extern WINDOW *conio_scr;
9
10 #define delay(x) usleep(x*1000)
11 #define randomize() srand((unsigned)time(NULL))
12
13 #endif