From: cuz Date: Sun, 19 Jan 2003 11:28:59 +0000 (+0000) Subject: Add chdir, make rmdir __fastcall__ X-Git-Tag: V2.12.0~1783 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=22b4faabb2b34f0b24cb6e9750805547a2b2c142;p=cc65 Add chdir, make rmdir __fastcall__ git-svn-id: svn://svn.cc65.org/cc65/trunk@1902 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/include/fcntl.h b/include/fcntl.h index 4627e5c13..5cebef9a9 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -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 */