Abstract away the operations involving a sentinel value for coordinates.
[super-star-trek.git] / src / sstlinux.h
1 #ifndef __SSTLINUX_H
2 #define __SSTLINUX_H
3
4 void sound(unsigned int);
5 void nosound(void);
6
7 #define delay(x) usleep(x*1000)
8 #define randomize() srand((unsigned)time(NULL))
9
10 #endif