Listing 4

001  /* interface to utility module */
002
003  extern int g_white;
004  extern int g_black;
005
006  void fatal(char *s);
007  void g_init(void);
008  void cleanup(void);
009  void g_circle(int y, int x, int radius, int color);
010  void g_square(int y, int x, int size, int color);