blob: 28c1647c443ee933ff402e98e35cea968d52a1df (
plain)
1
2
3
4
5
6
7
8
|
#include <stdio.h>
int unspecified_main(int argc, char *argv[])
{
(void)argc;
fprintf(stderr, "sh: %s is an extension allowed by POSIX but not implemented in this shell\n", argv[0]);
return 1;
}
|