summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/sys
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-18 21:42:41 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-18 21:42:41 +0000
commit02aaec7647607e96532b93083557412daca02285 (patch)
tree3c43da9ca1d68b69d0d5d596176d1314e8e895ac /cpukit/libnetworking/sys
parent2008-08-18 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-02aaec7647607e96532b93083557412daca02285.tar.bz2
2008-08-18 Joel Sherrill <joel.sherrill@oarcorp.com>
* libnetworking/lib/ftpfs.c, libnetworking/libc/inet_ntoa.c, libnetworking/libc/rcmd.c, libnetworking/nfs/bootp_subr.c, libnetworking/rtems/rtems_glue.c, libnetworking/rtems/rtems_malloc_mbuf.c, libnetworking/rtems/rtems_showicmpstat.c, libnetworking/sys/malloc.h: Fix some warnings.
Diffstat (limited to 'cpukit/libnetworking/sys')
-rw-r--r--cpukit/libnetworking/sys/malloc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpukit/libnetworking/sys/malloc.h b/cpukit/libnetworking/sys/malloc.h
index 97088147b8..10b0a7964c 100644
--- a/cpukit/libnetworking/sys/malloc.h
+++ b/cpukit/libnetworking/sys/malloc.h
@@ -347,6 +347,9 @@ extern struct kmembuckets bucket[];
void free (void *addr, int type);
void *malloc (size_t size, int type, int flags);
+/* standard realloc but we cannot include stdlib.h */
+void *realloc(void * __r, size_t __size);
+
#endif /* _KERNEL */
#endif /* !_SYS_MALLOC_H_ */