diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-01-31 16:59:25 -0500 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-01-31 16:59:25 -0500 |
commit | b3a701f695ec6685661325511a51abe5afb9eb41 (patch) | |
tree | 7f701b5a0d6af74eda5476462f4eeaffbf9081f5 /src | |
parent | 06e2a726e7a8824499676439fbb063b2761306a6 (diff) |
removing unused monkeyshell stub.
Diffstat (limited to 'src')
-rw-r--r-- | src/monkeyshell/Makefile | 2 | ||||
-rwxr-xr-x | src/monkeyshell/monkeyshell | bin | 6263 -> 0 bytes | |||
-rw-r--r-- | src/monkeyshell/monkeyshell.c | 17 |
3 files changed, 0 insertions, 19 deletions
diff --git a/src/monkeyshell/Makefile b/src/monkeyshell/Makefile deleted file mode 100644 index 312938e..0000000 --- a/src/monkeyshell/Makefile +++ /dev/null @@ -1,2 +0,0 @@ -monkeyshell: monkeyshell.c - gcc -Wall -Werror --pedantic -o monkeyshell monkeyshell.c diff --git a/src/monkeyshell/monkeyshell b/src/monkeyshell/monkeyshell Binary files differdeleted file mode 100755 index 95430f5..0000000 --- a/src/monkeyshell/monkeyshell +++ /dev/null diff --git a/src/monkeyshell/monkeyshell.c b/src/monkeyshell/monkeyshell.c deleted file mode 100644 index 7ef2a55..0000000 --- a/src/monkeyshell/monkeyshell.c +++ /dev/null @@ -1,17 +0,0 @@ -#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"); - return 123; -} |