]> git.sur5r.net Git - cc65/blobdiff - include/fcntl.h
Make close() fastcall
[cc65] / include / fcntl.h
index 4853fd1df0d8a68f1f277ddcbdfddf9365848ee8..ff09f6f963693986515c8ee3c67d2e24068f290e 100644 (file)
@@ -58,7 +58,7 @@ typedef long int off_t;
 
 /* Functions */
 int open (const char* name, int flags, ...);   /* May take a mode argument */
-int close (int fd);
+int __fastcall__ close (int fd);
 int write (int fd, const void* buf, unsigned count);
 int read (int fd, void* buf, unsigned count);
 int mkdir (const char* name, ...);             /* May take a mode argument */