xref: /original-bsd/old/games.vax/chess/chess.c (revision e59fb703)
1 
2 static char sccsid[] = "	chess.c	4.2	88/10/19	";
3 
4 #include <stdio.h>
5 main()
6 {
7 	execl("/usr/games/lib/compat", "chess", "/usr/games/lib/chess", 0);
8 	fprintf(stderr, "chess: can't find /usr/games/lib/compat.\n");
9 	exit(1);
10 }
11