mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-15 15:07:16 +00:00
13 lines
184 B
C
13 lines
184 B
C
/*
|
|
* gno/usr.bin/true.c
|
|
*
|
|
* Devin Reade, 1997. (Are you impressed, yet?)
|
|
*
|
|
* $Id: true.c,v 1.1 1997/08/07 05:16:58 gdr Exp $
|
|
*/
|
|
|
|
int
|
|
main(int argc, char **argv) {
|
|
return 0;
|
|
}
|