]> git.sur5r.net Git - cc65/commitdiff
Make read() and write() fastcall
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 3 Dec 2002 22:25:26 +0000 (22:25 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 3 Dec 2002 22:25:26 +0000 (22:25 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1710 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/fcntl.h

index ff09f6f963693986515c8ee3c67d2e24068f290e..ba256275c7ecc4ca2091cf2f2659597ca5d25e91 100644 (file)
@@ -59,8 +59,8 @@ typedef long int off_t;
 /* Functions */
 int open (const char* name, int flags, ...);   /* May take a mode argument */
 int __fastcall__ close (int fd);
-int write (int fd, const void* buf, unsigned count);
-int read (int fd, void* buf, unsigned count);
+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);
 off_t __fastcall__ lseek(int fd, off_t offset, int whence);