summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog6
-rw-r--r--cpukit/librpc/include/rpc/clnt.h1
2 files changed, 7 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 19a657fc2d..7866fdc8e7 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,9 @@
+2008-03-29 Chris Johns <chrisj@rtems.org>
+
+ * librpc/include/rpc/clnt.h: Added the missing __BEGIN_DECLS as
+ reported to the mailing list by Pierre Kestener
+ (pierre.kestener@cea.fr).
+
2008-03-25 Till Straumann <strauman@slac.stanford.edu>
* shttpd/log.c: Activate SPLIT_SNPRINTF for gcc <= 4.2.3 and
diff --git a/cpukit/librpc/include/rpc/clnt.h b/cpukit/librpc/include/rpc/clnt.h
index 65201c3c48..554a8a8d8a 100644
--- a/cpukit/librpc/include/rpc/clnt.h
+++ b/cpukit/librpc/include/rpc/clnt.h
@@ -271,6 +271,7 @@ __END_DECLS
/*
* Added for compatibility to old rpc 4.0. Obsoleted by clnt_vc_create().
*/
+__BEGIN_DECLS
extern CLIENT *clntunix_create(struct sockaddr_un *,
u_long, u_long, int *, u_int, u_int);
__END_DECLS