1
0
mirror of https://github.com/ventoy/Ventoy.git synced 2025-03-21 21:14:18 -04:00

14 lines
172 B
C
Raw Normal View History

2020-08-08 19:39:31 +08:00
#include <sys/types.h>
#include <sys/stat.h>
int main(int argc, char **argv)
{
if (argc != 2)
{
return 1;
}
return chmod(argv[1], 0777);
}