]> sourceware.org Git - glibc.git/commitdiff
resolv: Reindent preprocessor conditionals following cleanups
authorFlorian Weimer <fweimer@redhat.com>
Thu, 28 Apr 2016 14:53:56 +0000 (16:53 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 28 Apr 2016 14:53:56 +0000 (16:53 +0200)
ChangeLog
resolv/inet_addr.c
resolv/res_init.c
resolv/res_mkquery.c

index 8c1de3398898dde736e7e50a8b4eaad9d9d21b13..bb2ca7355446331e052a31706467590e9bc3a5ae 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2016-04-28  Florian Weimer  <fweimer@redhat.com>
+
+       * resolv/inet_addr.c: Reindent preprocessor conditionals.
+       * resolv/res_init.c: Likewise.
+       * resolv/res_mkquery.c: Likewise.
+
 2016-04-28  Florian Weimer  <fweimer@redhat.com>
 
        * resolv/res_init.c (isascii): Do not define.  Use definition in
index 10d9a1e24d076691a17d818d6265cf78303fc7bf..022f7ea0841b6baeec80c11eb846ae25d571ad49 100644 (file)
 
 #include <ctype.h>
 
-# include <endian.h>
-# include <stdint.h>
-# include <stdlib.h>
-# include <limits.h>
-# include <errno.h>
+#include <endian.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <limits.h>
+#include <errno.h>
 
 /*
  * Ascii internet address interpretation routine.
index 915a70aef392ed3275e620f792f521769b2edf9b..cea4c8a3cc5ad0181ee706daedb940083d08ba76 100644 (file)
@@ -542,7 +542,7 @@ res_nclose(res_state statp)
 }
 libc_hidden_def (__res_nclose)
 
-# ifdef _LIBC_REENTRANT
+#ifdef _LIBC_REENTRANT
 /* This is called when a thread is exiting to free resources held in _res.  */
 static void __attribute__ ((section ("__libc_thread_freeres_fn")))
 res_thread_freeres (void)
@@ -558,4 +558,4 @@ res_thread_freeres (void)
 }
 text_set_element (__libc_thread_subfreeres, res_thread_freeres);
 text_set_element (__libc_subfreeres, res_thread_freeres);
-# endif
+#endif
index 9a11d169a3b4b425c4f22c11ef8485be55741218..12f9730199f81f69eca547da88c626075d5063bd 100644 (file)
 /* Options.  Leave them on. */
 /* #define DEBUG */
 
-# include <hp-timing.h>
-# include <stdint.h>
-# if HP_TIMING_AVAIL
-#  define RANDOM_BITS(Var) { uint64_t v64; HP_TIMING_NOW (v64); Var = v64; }
-# endif
+#include <hp-timing.h>
+#include <stdint.h>
+#if HP_TIMING_AVAIL
+# define RANDOM_BITS(Var) { uint64_t v64; HP_TIMING_NOW (v64); Var = v64; }
+#endif
 
 /*
  * Form all types of queries.
This page took 0.178712 seconds and 5 git commands to generate.