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