]> git.sur5r.net Git - cc65/blobdiff - include/fcntl.h
Removed a "cc65_" prefix.
[cc65] / include / fcntl.h
index fd86c7a194d4eb8319b4eb2efba174d1be640a92..0d2398315659c2d83c557a44b2ce9c0f04464e8a 100644 (file)
@@ -1,6 +1,6 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                 fcntl.h                                  */
+/*                                  fcntl.h                                  */
 /*                                                                           */
 /*                            File control operations                        */
 /*                                                                           */
@@ -39,7 +39,7 @@
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
 
 /* Functions */
-int open (const char* name, int flags, ...);   /* May take a mode argument */
+int open (const char* name, int flags, ...);    /* May take a mode argument */
 int __fastcall__ close (int fd);
 int __fastcall__ creat (const char* name, unsigned mode);