2006-09-13 Joel Sherrill <joel@OARcorp.com>

* libnetworking/rtems/rtems_malloc_mbuf.c: Removed warning by adding
	prototype of malloc.
This commit is contained in:
Joel Sherrill
2006-09-13 16:55:34 +00:00
parent 0ecafb6e6e
commit 8afb74104a
2 changed files with 6 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2006-09-13 Joel Sherrill <joel@OARcorp.com>
* libnetworking/rtems/rtems_malloc_mbuf.c: Removed warning by adding
prototype of malloc.
2006-09-11 Joel Sherrill <joel@OARcorp.com>
* libmisc/mw-fb/mw_fb.c, libmisc/mw-fb/mw_fb.h, libmisc/mw-fb/mw_uid.c,

View File

@@ -27,6 +27,7 @@
void* rtems_bsdnet_malloc_mbuf(size_t size, int type)
{
extern void *malloc(size_t);
return malloc(size);
}