mirror of
https://github.com/cc65/cc65.git
synced 2024-12-22 12:30:41 +00:00
Make read() and write() fastcall
git-svn-id: svn://svn.cc65.org/cc65/trunk@1710 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
df956f4628
commit
51c31b7ab6
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user