proot/test/argv0.c

8 lines
83 B
C

#include <stdio.h>
int main(int argc, char **argv)
{
puts(argv[0]);
return 0;
}