File: macros.h

package info (click to toggle)
gravitywars 1.102-34
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 2,468 kB
  • ctags: 553
  • sloc: ansic: 3,938; makefile: 52; sh: 52
file content (10 lines) | stat: -rw-r--r-- 233 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
/* GravityWars 1.1,  (C) Sami Niemi -95 */

/*--------------------------------------------------------------------- beep */
#ifndef NOSOUND
   #define beep(time) ioctl(1,KDMKTONE, 3276800+time);
#else
   #define beep(time) 
#endif