about summary refs log tree commit diff
path: root/misc/sys/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'misc/sys/file.h')
-rw-r--r--misc/sys/file.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/misc/sys/file.h b/misc/sys/file.h
index 9f946fb327..02285938cf 100644
--- a/misc/sys/file.h
+++ b/misc/sys/file.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992, 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1992, 1996, 1997 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -22,7 +22,7 @@
 #include <features.h>
 
 #ifndef	_FCNTL_H
-#include <fcntl.h>
+# include <fcntl.h>
 #endif
 
 __BEGIN_DECLS
@@ -31,19 +31,19 @@ __BEGIN_DECLS
 /* Alternate names for values for the WHENCE argument to `lseek'.
    These are the same as SEEK_SET, SEEK_CUR, and SEEK_END, respectively.  */
 #ifndef L_SET
-#define	L_SET	0	/* Seek from beginning of file.  */
-#define	L_INCR	1	/* Seek from current position.  */
-#define	L_XTND	2	/* Seek from end of file.  */
+# define L_SET	0	/* Seek from beginning of file.  */
+# define L_INCR	1	/* Seek from current position.  */
+# define L_XTND	2	/* Seek from end of file.  */
 #endif
 
 
 /* Operations for the `flock' call.  */
-#define	LOCK_SH	1    /* Shared lock.  */
-#define	LOCK_EX	2    /* Exclusive lock.  */
-#define	LOCK_UN	8    /* Unlock.  */
+#define	LOCK_SH	1	/* Shared lock.  */
+#define	LOCK_EX	2 	/* Exclusive lock.  */
+#define	LOCK_UN	8	/* Unlock.  */
 
 /* Can be OR'd in to one of the above.  */
-#define	LOCK_NB	4    /* Don't block when locking.  */
+#define	LOCK_NB	4	/* Don't block when locking.  */
 
 
 /* Apply or remove an advisory lock, according to OPERATION,