]> git.sur5r.net Git - cc65/blobdiff - include/fcntl.h
The --forget-inc-paths option did not work correctly
[cc65] / include / fcntl.h
index 76fe91d6b77c3cb6f24c60d5fa4feac818795f34..82ff4acb11870d35b6cc8ca9f88743138a91c439 100644 (file)
@@ -2,11 +2,11 @@
 /*                                                                           */
 /*                                 fcntl.h                                  */
 /*                                                                           */
-/*                           Low level file I/O                             */
+/*                            File control operations                        */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998-2000 Ullrich von Bassewitz                                       */
+/* (C) 1998-2003 Ullrich von Bassewitz                                       */
 /*               Wacholderweg 14                                             */
 /*               D-70597 Stuttgart                                           */
 /* EMail:        uz@musoftware.de                                            */
 
 
 
+/*****************************************************************************/
+/*                                  Data                                    */
+/*****************************************************************************/
+
+
+
 /* Flag values for the open() call */
 #define O_RDONLY        0x01
 #define O_WRONLY        0x02
 #define O_APPEND        0x40
 
 
-/* types */
-typedef long int off_t;
+
+/*****************************************************************************/
+/*                                  Code                                    */
+/*****************************************************************************/
+
 
 
 /* Functions */
 int open (const char* name, int flags, ...);   /* May take a mode argument */
-int 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 */
-int rmdir (const char* name);
-off_t __fastcall__ lseek(int fd, off_t offset, int whence);
+int __fastcall__ close (int fd);
+int __fastcall__ creat (const char* name, unsigned mode);