feture match with master

This commit is contained in:
2026-09-11 03:50:43 +01:00
parent bcaf026ef5
commit 79bc676f49
16 changed files with 293 additions and 11 deletions
+19
View File
@@ -0,0 +1,19 @@
// this code is licenced under Wrathmark licence
// © 2026 wullie wulliestudio.com
// please see attached licence for full usage and rights
#include "LocalHeader.h"
#include "stdWullie/definitions/typeNull.h"
#include "stdWullie/definitions/umodetypes.h"
#include "stdWullie/exit.h"
// does what is says on the tin
long mkdir(const char *filePath, int mode){
if(mode == NULL){
riskyError();
return NULL;
}
syscall2(SYS_mkdir, (long)filePath, mode);
}