Correct cpp indentation.
authorJim Meyering <jim@meyering.net>
Sat, 13 Sep 2003 22:13:36 +0000 (22:13 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 13 Sep 2003 22:13:36 +0000 (22:13 +0000)
lib/getloadavg.c
lib/strdup.c
lib/vasnprintf.c

index eb533f16cea68e27a12531c7a6556171b6efe145..6ac0a8c5d2b16f017120279bf4e8ca13ce216b5e 100644 (file)
@@ -481,7 +481,7 @@ static unsigned int samples;
 static struct dg_sys_info_load_info load_info; /* what-a-mouthful! */
 # endif /* DGUX */
 
-#if !defined (HAVE_LIBKSTAT) && defined (LOAD_AVE_TYPE)
+# if !defined (HAVE_LIBKSTAT) && defined (LOAD_AVE_TYPE)
 /* File descriptor open to /dev/kmem or VMS load ave driver.  */
 static int channel;
 /* Nonzero iff channel is valid.  */
@@ -497,7 +497,7 @@ static struct nlist nl[2];
 static kvm_t *kd;
 #  endif /* SUNOS_5 */
 
-#endif /* LOAD_AVE_TYPE && !HAVE_LIBKSTAT */
+# endif /* LOAD_AVE_TYPE && !HAVE_LIBKSTAT */
 \f
 /* Put the 1 minute, 5 minute and 15 minute load averages
    into the first NELEM elements of LOADAVG.
index 28d2ba1aa9b2b7af7e5bc2130f169d0704f3ab79..52667e98e001aea22384567e1fd1ccbc3ce51ad1 100644 (file)
@@ -18,7 +18,7 @@
    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #ifdef HAVE_CONFIG_H
-#include <config.h>
+# include <config.h>
 #endif
 
 #include <stdlib.h>
index 8eb950551d0206fca5f417ae0c7f365f879782ae..9c701f1c6140872b58721dbc8f9cbcf4b62c0b90 100644 (file)
@@ -527,7 +527,7 @@ vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args)
                    retcount = 0;
 
 #if HAVE_SNPRINTF
-#define SNPRINTF_BUF(arg) \
+# define SNPRINTF_BUF(arg) \
                    switch (prefix_count)                                   \
                      {                                                     \
                      case 0:                                               \
@@ -547,7 +547,7 @@ vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args)
                        abort ();                                           \
                      }
 #else
-#define SNPRINTF_BUF(arg) \
+# define SNPRINTF_BUF(arg) \
                    switch (prefix_count)                                   \
                      {                                                     \
                      case 0:                                               \