1
0
mirror of https://github.com/ventoy/Ventoy.git synced 2025-03-22 05:24:18 -04:00
2020-08-08 19:39:35 +08:00

14 lines
172 B
C

#include <sys/types.h>
#include <sys/stat.h>
int main(int argc, char **argv)
{
if (argc != 2)
{
return 1;
}
return chmod(argv[1], 0777);
}