mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
resolv: Reindent preprocessor conditionals following cleanups
This commit is contained in:
parent
e01eef67ba
commit
ed3c7876cc
@ -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
|
||||
|
@ -72,11 +72,11 @@
|
||||
|
||||
#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.
|
||||
|
@ -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
|
||||
|
@ -77,11 +77,11 @@
|
||||
/* 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.
|
||||
|
Loading…
Reference in New Issue
Block a user