summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/librpc/ChangeLog5
-rw-r--r--cpukit/librpc/src/rpc/rtems_portmapper.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/cpukit/librpc/ChangeLog b/cpukit/librpc/ChangeLog
index 498727e290..4632cb6344 100644
--- a/cpukit/librpc/ChangeLog
+++ b/cpukit/librpc/ChangeLog
@@ -1,3 +1,8 @@
+2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/rpc/rtems_portmapper.c: include <stdlib.h> (Get rid of gcc31
+ warnings about abort/exit).
+
2002-08-06 Joel Sherrill <joel@OARcorp.com>
* configure.ac: or32 does not currently support librpc.
diff --git a/cpukit/librpc/src/rpc/rtems_portmapper.c b/cpukit/librpc/src/rpc/rtems_portmapper.c
index e33a3103c9..c8be0b3188 100644
--- a/cpukit/librpc/src/rpc/rtems_portmapper.c
+++ b/cpukit/librpc/src/rpc/rtems_portmapper.c
@@ -30,6 +30,7 @@
#include <rpc/rpc.h>
#include <rpc/pmap_prot.h>
#include <stdio.h>
+#include <stdlib.h>
#include <unistd.h>
#include <malloc.h>
#include <netdb.h>