]> Dogcows Code - chaz/tar/blobdiff - src/open3.h
*** empty log message ***
[chaz/tar] / src / open3.h
index 9ea2b4ff3d191ce74422d29a10825763049a1972..c1c0e59b67611125f2a34ef20d69638b95e291bb 100644 (file)
@@ -22,7 +22,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  * open() call.  On BSD or System 5, the system already has this in an
  * include file.  This file is needed for V7 and MINIX systems for the
  * benefit of open3() in port.c, a routine that emulates the 3-argument
- * call using system calls available on V7/MINIX. 
+ * call using system calls available on V7/MINIX.
  *
  * This file is needed by PD tar even if we aren't using the
  * emulator, since the #defines for O_WRONLY, etc. are used in
@@ -38,9 +38,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  */
 
 /* Only one of the next three should be specified */
-#define O_RDONLY        0 /* only allow read */
-#define        O_WRONLY         1 /* only allow write */
-#define        O_RDWR           2 /* both are allowed */
+#define O_RDONLY        0      /* only allow read */
+#define        O_WRONLY         1      /* only allow write */
+#define        O_RDWR           2      /* both are allowed */
 
 /* The rest of these can be OR-ed in to the above. */
 /*
@@ -50,13 +50,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  * it defined.
  */
 #ifndef O_NDELAY
-#define O_NDELAY        4 /* don't block on opening devices that would
+#define O_NDELAY        4      /* don't block on opening devices that would
                            * block on open -- ignored by emulator. */
 #endif
-#define O_CREAT                 8 /* create file if needed */
-#define O_EXCL         16 /* file cannot already exist */
-#define O_TRUNC                32 /* truncate file on open */
-#define O_APPEND       64 /* always write at end of file -- ignored by emul */
+#define O_CREAT                 8      /* create file if needed */
+#define O_EXCL         16      /* file cannot already exist */
+#define O_TRUNC                32      /* truncate file on open */
+#define O_APPEND       64      /* always write at end of file -- ignored by emul */
 
 #ifdef EMUL_OPEN3
 /*
This page took 0.023972 seconds and 4 git commands to generate.