mirror of
https://github.com/geohot/qira
synced 2024-12-26 22:09:42 +03:00
cbcc6a411e
appropriately
11 lines
185 B
C
11 lines
185 B
C
// -- andrewg, original author was zen-parse :)
|
|
#include <stdlib.h>
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
if(argc) exit(0);
|
|
printf(argv[3]);
|
|
exit(EXIT_FAILURE);
|
|
}
|