blob: 7ef2a5540f49142d9df01d5afe71769405dcbd73 (
plain)
- #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;
- }
|