summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/rtems
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-11-16 14:43:40 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-11-16 14:43:40 +0000
commitd808d8b1f0c50da72da51ff0be19ba338af811fd (patch)
treeeff98cb83d5ac76a2277c9b10d1e1f627e12fa55 /cpukit/libnetworking/rtems
parent2006-11-16 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-d808d8b1f0c50da72da51ff0be19ba338af811fd.tar.bz2
2006-11-16 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/rtems/rtems_glue.c: Rename timeout() into rtems_bsdnet_timeout().
Diffstat (limited to 'cpukit/libnetworking/rtems')
-rw-r--r--cpukit/libnetworking/rtems/rtems_glue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libnetworking/rtems/rtems_glue.c b/cpukit/libnetworking/rtems/rtems_glue.c
index edd72cf499..a6f39aeda3 100644
--- a/cpukit/libnetworking/rtems/rtems_glue.c
+++ b/cpukit/libnetworking/rtems/rtems_glue.c
@@ -108,7 +108,7 @@ int32_t rtems_bsdnet_timeoffset = 0;
extern void *malloc (size_t);
extern void free (void *);
void *
-rtems_bsdnet_malloc (unsigned long size, int type, int flags)
+rtems_bsdnet_malloc (size_t size, int type, int flags)
{
void *p;
int try = 0;
@@ -683,7 +683,7 @@ rtems_bsdnet_random (void)
* Callout list processing
*/
void
-timeout(void (*ftn)(void *), void *arg, int ticks)
+rtems_bsdnet_timeout(void (*ftn)(void *), void *arg, int ticks)
{
register struct callout *new, *p, *t;