/* chmod.c Change the mode of a file. */ #include "uucp.h" #include "uudefs.h" #include "sysdep.h" #include "system.h" #include /* Change the mode of a file. */ boolean fsysdep_change_mode (zfile, imode) const char *zfile; unsigned int imode; { if (chmod ((char *) zfile, imode) < 0) { ulog (LOG_ERROR, "chmod (%s): %s", zfile, strerror (errno)); return FALSE; } return TRUE; } ss='main'>index : netbsd
NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
path: root/sys/dev/microcode/tools/array2bin.c
AgeCommit message (Expand)Author
2008-05-04A couple of dumb utilities:ad