mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-11 13:10:38 +00:00
14 lines
172 B
C
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);
|
||
|
}
|
||
|
|