| Index: fusl/src/stat/mkdirat.c | 
| diff --git a/fusl/src/stat/mkdirat.c b/fusl/src/stat/mkdirat.c | 
| index b8bc2527d757e62d02db0f2fd6ffa2751744e0d8..e48b80f66b84c5f8f751ef927657f5daa9fcad48 100644 | 
| --- a/fusl/src/stat/mkdirat.c | 
| +++ b/fusl/src/stat/mkdirat.c | 
| @@ -1,7 +1,6 @@ | 
| #include <sys/stat.h> | 
| #include "syscall.h" | 
|  | 
| -int mkdirat(int fd, const char *path, mode_t mode) | 
| -{ | 
| -	return syscall(SYS_mkdirat, fd, path, mode); | 
| +int mkdirat(int fd, const char* path, mode_t mode) { | 
| +  return syscall(SYS_mkdirat, fd, path, mode); | 
| } | 
|  |