]> git.sur5r.net Git - cc65/blobdiff - include/fcntl.h
Add chdir, make rmdir __fastcall__
[cc65] / include / fcntl.h
index 4627e5c13b463990383cf9b8b607502cac11a879..5cebef9a928c985f2a5014962a8e730287f97368 100644 (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 */