mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-04 06:09:48 +00:00
13 lines
187 B
C
13 lines
187 B
C
/*
|
|
* gno/usr.bin/false.c
|
|
*
|
|
* Devin Reade, 1997. (Are you impressed, yet?)
|
|
*
|
|
* $Id: false.c,v 1.1 1997/08/07 05:17:22 gdr Exp $
|
|
*/
|
|
|
|
int
|
|
main(int argc, char **argv) {
|
|
return -1;
|
|
}
|