1#ifndef _LIBC_SYS_STAT_H 2#define _LIBC_SYS_STAT_H 3 4#include <bits/sys/stat.h> 5#include <sys/cdefs.h> 6#include <sys/types.h> 7 8__BEGIN_DECLS 9 10int mkdir(const char* path); 11int fstat(int nfds, fstat_t* stat); 12 13__END_DECLS 14 15#endif