1#ifndef EXTRA_CONFIG_H 2#define EXTRA_CONFIG_H 3 4#include <sys/stat.h> 5int fchmod(int fd, mode_t mode); 6int fchown(int fd, uid_t owner, gid_t group); 7 8#endif // EXTRA_CONFIG_H 9 10