diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-09-04 19:12:09 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-09-04 19:12:09 -0400 |
commit | d64d1d121a02d8b7d6af6be1b544fdbfcc55d151 (patch) | |
tree | b054a2d3d402535ea46f7afa00f27fd2b21a98a3 /src/monkeyshell | |
parent | 5eaa6e2d578e98783d09a699c036968b9b7aa86d (diff) |
added comments to monkeyshell.c
Diffstat (limited to 'src/monkeyshell')
-rw-r--r-- | src/monkeyshell/monkeyshell.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/monkeyshell/monkeyshell.c b/src/monkeyshell/monkeyshell.c index 99da4fa..7ef2a55 100644 --- a/src/monkeyshell/monkeyshell.c +++ b/src/monkeyshell/monkeyshell.c @@ -1,5 +1,15 @@ #include <stdio.h> +/* + Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net> + Date: 2008-09-04 19:11:18-0400 + License: GPL v3+, if you actually care + + This is a toy "shell" to install on demonstration systems. If a + user can log in successfully, they get this cheery message, and an + unusual error code. +*/ + int main() { printf("monkeys!\n"); |