diff options
author | Andreas Jaeger <aj@suse.de> | 2001-06-11 07:41:59 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-06-11 07:41:59 +0000 |
commit | a854060c51a7bc99c45324811ea22ba634c6a271 (patch) | |
tree | 3ecccd6bae4ba628f1dee8c20b1f2ff5717a1eaf | |
parent | 0aaa9c6a74b1298d7792f962210ce8be2a145671 (diff) | |
download | glibc-a854060c51a7bc99c45324811ea22ba634c6a271.zip glibc-a854060c51a7bc99c45324811ea22ba634c6a271.tar.gz glibc-a854060c51a7bc99c45324811ea22ba634c6a271.tar.bz2 |
Add __BEGIN_DECLS/__END_DECLS.
-rw-r--r-- | sunrpc/rpc/rpc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sunrpc/rpc/rpc.h b/sunrpc/rpc/rpc.h index 5150abf..38e4385 100644 --- a/sunrpc/rpc/rpc.h +++ b/sunrpc/rpc/rpc.h @@ -67,6 +67,7 @@ /* routines for parsing /etc/rpc */ #include <rpc/netdb.h> /* structures and routines to parse /etc/rpc */ +__BEGIN_DECLS /* Global variables, protected for multi-threaded applications. */ extern fd_set *__rpc_thread_svc_fdset (void) __attribute__ ((__const__)); @@ -91,4 +92,6 @@ extern struct pollfd **__rpc_thread_svc_pollfd (void) extern int *__rpc_thread_svc_max_pollfd (void) __attribute__ ((__const__)); #define svc_max_pollfd (*__rpc_thread_svc_max_pollfd ()) +__END_DECLS + #endif /* rpc/rpc.h */ |