Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys use tab after #define.



details:   https://anonhg.NetBSD.org/src/rev/7175042a0558
branches:  trunk
changeset: 566503:7175042a0558
user:      yamt <yamt%NetBSD.org@localhost>
date:      Tue May 11 10:30:48 2004 +0000

description:
use tab after #define.

diffstat:

 sys/sys/statvfs.h |  20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diffs (62 lines):

diff -r 9cb57ef5f582 -r 7175042a0558 sys/sys/statvfs.h
--- a/sys/sys/statvfs.h Tue May 11 10:13:35 2004 +0000
+++ b/sys/sys/statvfs.h Tue May 11 10:30:48 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: statvfs.h,v 1.3 2004/04/26 17:26:58 tron Exp $  */
+/*     $NetBSD: statvfs.h,v 1.4 2004/05/11 10:30:48 yamt Exp $  */
 
 /*-
  * Copyright (c) 2004 The NetBSD Foundation, Inc.
@@ -46,17 +46,17 @@
 #include <sys/ansi.h>
 #include <sys/fstypes.h>
 
-#define _VFS_NAMELEN   32
-#define _VFS_MNAMELEN  1024
+#define        _VFS_NAMELEN    32
+#define        _VFS_MNAMELEN   1024
 
 #ifndef        fsblkcnt_t
 typedef        __fsblkcnt_t    fsblkcnt_t;     /* fs block count (statvfs) */
-#define fsblkcnt_t     __fsblkcnt_t
+#define        fsblkcnt_t      __fsblkcnt_t
 #endif
 
 #ifndef        fsfilcnt_t
 typedef        __fsfilcnt_t    fsfilcnt_t;     /* fs file count */
-#define fsfilcnt_t     __fsfilcnt_t
+#define        fsfilcnt_t      __fsfilcnt_t
 #endif
 
 #ifndef        uid_t
@@ -66,7 +66,7 @@
 
 #ifdef _BSD_SIZE_T_
 typedef        _BSD_SIZE_T_            size_t;
-#define _SIZE_T
+#define        _SIZE_T
 #undef _BSD_SIZE_T_
 #endif
 
@@ -107,8 +107,8 @@
 
 #if defined(_NETBSD_SOURCE) && !defined(_POSIX_SOURCE) && \
     !defined(_XOPEN_SOURCE)
-#define VFS_NAMELEN    _VFS_NAMELEN
-#define VFS_MNAMELEN   _VFS_MNAMELEN
+#define        VFS_NAMELEN     _VFS_NAMELEN
+#define        VFS_MNAMELEN    _VFS_MNAMELEN
 #endif
 
 #define        ST_RDONLY       MNT_RDONLY
@@ -134,8 +134,8 @@
 #define        ST_EXNORESPORT  MNT_EXNORESPORT
 #define        ST_EXPUBLIC     MNT_EXPUBLIC
 
-#define ST_WAIT                MNT_WAIT
-#define ST_NOWAIT      MNT_NOWAIT
+#define        ST_WAIT         MNT_WAIT
+#define        ST_NOWAIT       MNT_NOWAIT
 
 #if defined(_KERNEL) || defined(_STANDALONE)
 struct mount;



Home | Main Index | Thread Index | Old Index