Skip to content

Commit 930827a

Browse files
author
Ivan Zhakov
committed
* include/apr.h.in
(): Remove trailing whitespace. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1934275 13f79535-47bb-0310-9956-ffa450edef68
1 parent 474632a commit 930827a

1 file changed

Lines changed: 21 additions & 22 deletions

File tree

include/apr.h.in

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@
123123
/** @} */
124124
/** @} */
125125

126-
/* We don't include our conditional headers within the doxyblocks
127-
* or the extern "C" namespace
126+
/* We don't include our conditional headers within the doxyblocks
127+
* or the extern "C" namespace
128128
*/
129129

130130
#if APR_HAVE_WINDOWS_H && defined(WIN32)
@@ -191,7 +191,7 @@
191191

192192
#if APR_HAVE_STDINT_H
193193
#ifdef __cplusplus
194-
/* C99 7.18.4 requires that stdint.h only exposes INT64_C
194+
/* C99 7.18.4 requires that stdint.h only exposes INT64_C
195195
* and UINT64_C for C++ implementations if this is defined: */
196196
#ifndef __STDC_CONSTANT_MACROS
197197
#define __STDC_CONSTANT_MACROS
@@ -241,7 +241,7 @@ extern "C" {
241241

242242
/**
243243
* @addtogroup apr_platform
244-
* @ingroup APR
244+
* @ingroup APR
245245
* @{
246246
*/
247247

@@ -261,12 +261,12 @@ extern "C" {
261261
#define APR_USE_SHMEM_MMAP_ANON @usemmapanon@
262262
#define APR_USE_SHMEM_BEOS @usebeosarea@
263263

264-
#define APR_USE_FLOCK_SERIALIZE @flockser@
264+
#define APR_USE_FLOCK_SERIALIZE @flockser@
265265
#define APR_USE_SYSVSEM_SERIALIZE @sysvser@
266266
#define APR_USE_POSIXSEM_SERIALIZE @posixser@
267267
#define APR_USE_FCNTL_SERIALIZE @fcntlser@
268-
#define APR_USE_PROC_PTHREAD_SERIALIZE @procpthreadser@
269-
#define APR_USE_PTHREAD_SERIALIZE @pthreadser@
268+
#define APR_USE_PROC_PTHREAD_SERIALIZE @procpthreadser@
269+
#define APR_USE_PTHREAD_SERIALIZE @pthreadser@
270270

271271
#define APR_HAS_FLOCK_SERIALIZE @hasflockser@
272272
#define APR_HAS_SYSVSEM_SERIALIZE @hassysvser@
@@ -276,7 +276,7 @@ extern "C" {
276276

277277
#define APR_PROCESS_LOCK_IS_GLOBAL @proclockglobal@
278278

279-
#define APR_HAVE_CORKABLE_TCP @have_corkable_tcp@
279+
#define APR_HAVE_CORKABLE_TCP @have_corkable_tcp@
280280
#define APR_HAVE_GETRLIMIT @have_getrlimit@
281281
#define APR_HAVE_IN_ADDR @have_in_addr@
282282
#define APR_HAVE_INET_ADDR @have_inet_addr@
@@ -336,11 +336,11 @@ extern "C" {
336336
#define APR_TCP_NOPUSH_FLAG @apr_tcp_nopush_flag@
337337

338338
/* Is the TCP_NODELAY socket option inherited from listening sockets?
339-
*/
339+
*/
340340
#define APR_TCP_NODELAY_INHERITED @tcp_nodelay_inherited@
341341

342342
/* Is the O_NONBLOCK flag inherited from listening sockets?
343-
*/
343+
*/
344344
#define APR_O_NONBLOCK_INHERITED @o_nonblock_inherited@
345345

346346
/* Typedefs that APR needs. */
@@ -471,7 +471,6 @@ typedef apr_int32_t apr_intptr_t;
471471
#define APR_SIZE_MAX (~((apr_size_t)0))
472472
#define APR_OFF_MAX (sizeof(apr_off_t) == 4 ? APR_INT32_MAX : sizeof(apr_off_t) == 8 ? APR_INT64_MAX :0)
473473

474-
475474
/* Definitions that APR programs need to work properly. */
476475

477476
/**
@@ -485,8 +484,8 @@ typedef apr_int32_t apr_intptr_t;
485484
#define APR_END_DECLS
486485
#endif
487486

488-
/**
489-
* Thread callbacks from APR functions must be declared with APR_THREAD_FUNC,
487+
/**
488+
* Thread callbacks from APR functions must be declared with APR_THREAD_FUNC,
490489
* so that they follow the platform's calling convention.
491490
* <PRE>
492491
*
@@ -500,7 +499,7 @@ typedef apr_int32_t apr_intptr_t;
500499

501500
/**
502501
* The public APR functions are declared with APR_DECLARE(), so they may
503-
* use the most appropriate calling convention. Public APR functions with
502+
* use the most appropriate calling convention. Public APR functions with
504503
* variable arguments must use APR_DECLARE_NONSTD().
505504
*
506505
* @remark Both the declaration and implementations must use the same macro.
@@ -509,20 +508,20 @@ typedef apr_int32_t apr_intptr_t;
509508
* APR_DECLARE(rettype) apr_func(args)
510509
* </PRE>
511510
* @see APR_DECLARE_NONSTD @see APR_DECLARE_DATA
512-
* @remark Note that when APR compiles the library itself, it passes the
513-
* symbol -DAPR_DECLARE_EXPORT to the compiler on some platforms (e.g. Win32)
511+
* @remark Note that when APR compiles the library itself, it passes the
512+
* symbol -DAPR_DECLARE_EXPORT to the compiler on some platforms (e.g. Win32)
514513
* to export public symbols from the dynamic library build.\n
515514
* The user must define the APR_DECLARE_STATIC when compiling to target
516-
* the static APR library on some platforms (e.g. Win32.) The public symbols
515+
* the static APR library on some platforms (e.g. Win32.) The public symbols
517516
* are neither exported nor imported when APR_DECLARE_STATIC is defined.\n
518517
* By default, compiling an application and including the APR public
519518
* headers, without defining APR_DECLARE_STATIC, will prepare the code to be
520519
* linked to the dynamic library.
521520
*/
522-
#define APR_DECLARE(type) type
521+
#define APR_DECLARE(type) type
523522

524523
/**
525-
* The public APR functions using variable arguments are declared with
524+
* The public APR functions using variable arguments are declared with
526525
* APR_DECLARE_NONSTD(), as they must follow the C language calling convention.
527526
* @see APR_DECLARE @see APR_DECLARE_DATA
528527
* @remark Both the declaration and implementations must use the same macro.
@@ -540,7 +539,7 @@ typedef apr_int32_t apr_intptr_t;
540539
* @see APR_DECLARE @see APR_DECLARE_NONSTD
541540
* @remark Note that the declaration and implementations use different forms,
542541
* but both must include the macro.
543-
*
542+
*
544543
* <PRE>
545544
*
546545
* extern APR_DECLARE_DATA type apr_variable;\n
@@ -568,7 +567,7 @@ typedef apr_int32_t apr_intptr_t;
568567
/**
569568
* Declare a dso module's exported module structure as APR_MODULE_DECLARE_DATA.
570569
*
571-
* Unless APR_MODULE_DECLARE_STATIC is defined at compile time, symbols
570+
* Unless APR_MODULE_DECLARE_STATIC is defined at compile time, symbols
572571
* declared with APR_MODULE_DECLARE_DATA are always exported.
573572
* @code
574573
* module APR_MODULE_DECLARE_DATA mod_tag
@@ -585,7 +584,7 @@ typedef apr_int32_t apr_intptr_t;
585584
*/
586585
#define APU_MODULE_DECLARE_DATA APR_MODULE_DECLARE_DATA
587586

588-
/* Define APR_SSIZE_T_FMT.
587+
/* Define APR_SSIZE_T_FMT.
589588
* If ssize_t is an integer we define it to be "d",
590589
* if ssize_t is a long int we define it to be "ld",
591590
* if ssize_t is neither we declare an error here.

0 commit comments

Comments
 (0)