Add the missing "; \".
[glibc.git] / sunrpc / rpc_common.c
blobba89953112969df3635a1f44b5bb622e4d87f996
1 /*
2 * Redistribution and use in source and binary forms, with or without
3 * modification, are permitted provided that the following conditions are
4 * met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above
9 * copyright notice, this list of conditions and the following
10 * disclaimer in the documentation and/or other materials
11 * provided with the distribution.
12 * * Neither the name of Sun Microsystems, Inc. nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
19 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
21 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #include <rpc/rpc.h>
31 #ifdef _RPC_THREAD_SAFE_
32 #undef svc_fdset
33 #undef rpc_createerr
34 #undef svc_pollfd
35 #undef svc_max_pollfd
36 #endif /* _RPC_THREAD_SAFE_ */
39 * This file should only contain common data (global data) that is exported
40 * by public interfaces
42 /* We are very tricky here. We want to have _null_auth in a read-only
43 section but we cannot add const to the type because this isn't how
44 the variable is declared. So we use the section attribute. */
45 struct opaque_auth _null_auth __attribute__ ((nocommon));
46 libc_hidden_def (_null_auth)
47 fd_set svc_fdset;
48 struct rpc_createerr rpc_createerr;
49 struct pollfd *svc_pollfd;
50 int svc_max_pollfd;