directory ops

This commit is contained in:
rumbledethumps
2025-10-14 23:11:23 -07:00
parent a6763af95c
commit e6c138dc03
11 changed files with 138 additions and 8 deletions

View File

@@ -77,6 +77,7 @@ extern int optind, opterr, optopt;
int __fastcall__ write (int fd, const void* buf, unsigned count);
int __fastcall__ read (int fd, void* buf, unsigned count);
off_t __fastcall__ lseek (int fd, off_t offset, int whence);
int __fastcall__ syncfs (int fd);
int __fastcall__ unlink (const char* name); /* Same as remove() */
/* Directories */
@@ -98,6 +99,3 @@ int __fastcall__ exec (const char* progname, const char* cmdline);
/* End of unistd.h */
#endif