added comments to monkeyshell.c
[monkeysphere.git] / src / monkeyshell / monkeyshell.c
1 #include <stdio.h>
2
3 /* 
4    Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net> 
5    Date: 2008-09-04 19:11:18-0400
6    License: GPL v3+, if you actually care
7
8    This is a toy "shell" to install on demonstration systems.  If a
9    user can log in successfully, they get this cheery message, and an
10    unusual error code. 
11 */
12
13 int main()
14
15   printf("monkeys!\n");
16   return 123;
17 }