]> glassweightruler.freedombox.rocks Git - Ventoy.git/blob - BUSYBOX/chmod/vtchmod.c
DragonFly BSD support
[Ventoy.git] / BUSYBOX / chmod / vtchmod.c
1 #include <sys/types.h>
2 #include <sys/stat.h>
3
4 int main(int argc, char **argv)
5 {
6 if (argc != 2)
7 {
8 return 1;
9 }
10
11 return chmod(argv[1], 0777);
12 }
13