summaryrefslogblamecommitdiff
path: root/src/stat/mkdir.c
blob: 32625b7de32768dc45916b76c0d063af89e1203c (plain) (tree)
1
2
3
4
5
6
7
8
                     
                  



                                        
                
                                              


                                                          
 
#include <sys/stat.h>
#include <fcntl.h>
#include "syscall.h"

int mkdir(const char *path, mode_t mode)
{
#ifdef SYS_mkdir
	return syscall(SYS_mkdir, path, mode);
#else
	return syscall(SYS_mkdirat, AT_FDCWD, path, mode);
#endif
}