proot/test/argv0.c
2019-12-19 15:37:02 -05:00

7 lines
83 B
C

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