Make improvements

This commit is contained in:
Justine Tunney
2020-12-01 03:43:40 -08:00
parent 3e4fd4b0ad
commit e44a0cf6f8
256 changed files with 23100 additions and 2294 deletions

View File

@@ -23,7 +23,7 @@
textwindows int unlink$nt(const char *name) {
uint16_t name16[PATH_MAX];
if (mkntpath(name, name16) == -1) return -1;
if (__mkntpath(name, name16) == -1) return -1;
if (DeleteFile(name16)) {
return 0;
} else {