1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 20:29:34 +00:00

Add chdir, make rmdir __fastcall__

git-svn-id: svn://svn.cc65.org/cc65/trunk@1902 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-01-19 11:28:59 +00:00
parent 80a5fe182a
commit 22b4faabb2

View File

@ -61,8 +61,9 @@ int open (const char* name, int flags, ...); /* May take a mode argument */
int __fastcall__ close (int fd);
int __fastcall__ write (int fd, const void* buf, unsigned count);
int __fastcall__ read (int fd, void* buf, unsigned count);
int mkdir (const char* name, ...); /* May take a mode argument */
int rmdir (const char* name);
int __fastcall__ chdir (const char* name);
int mkdir (const char* name, ...); /* May take a mode argument */
int __fastcall__ rmdir (const char* name);
off_t __fastcall__ lseek(int fd, off_t offset, int whence);
/* Macros */