mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-12-27 15:45:58 -05: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);
|
|
}
|
|
|