]> git.sur5r.net Git - cc65/commitdiff
added off_t type and lseek() prototype
authorcpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 11 Aug 2000 21:37:44 +0000 (21:37 +0000)
committercpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 11 Aug 2000 21:37:44 +0000 (21:37 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@271 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/fcntl.h

index b1902c08d28dfee1b4037b8ecf557e3973e0f99f..76fe91d6b77c3cb6f24c60d5fa4feac818795f34 100644 (file)
@@ -47,6 +47,9 @@
 #define O_APPEND        0x40
 
 
+/* types */
+typedef long int off_t;
+
 
 /* Functions */
 int open (const char* name, int flags, ...);   /* May take a mode argument */
@@ -55,6 +58,7 @@ 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 */
 int rmdir (const char* name);
+off_t __fastcall__ lseek(int fd, off_t offset, int whence);