Changed prototype of rtems_bsdnet_makeFdForSocket to (void *) pointer

so that the libc code did not have to know about (struct socket).
This commit is contained in:
Joel Sherrill
1999-01-26 01:50:31 +00:00
parent 887618b0e7
commit 39ba912277
4 changed files with 4 additions and 4 deletions

View File

@@ -175,7 +175,7 @@ void bootpc_init(void);
int socket (int, int, int);
int ioctl (int, unsigned long, ...);
struct socket *rtems_bsdnet_fdToSocket (int fd);
int rtems_bsdnet_makeFdForSocket (struct socket *);
int rtems_bsdnet_makeFdForSocket (void *);
/*
* Events used by networking routines.

View File

@@ -175,7 +175,7 @@ void bootpc_init(void);
int socket (int, int, int);
int ioctl (int, unsigned long, ...);
struct socket *rtems_bsdnet_fdToSocket (int fd);
int rtems_bsdnet_makeFdForSocket (struct socket *);
int rtems_bsdnet_makeFdForSocket (void *);
/*
* Events used by networking routines.

View File

@@ -175,7 +175,7 @@ void bootpc_init(void);
int socket (int, int, int);
int ioctl (int, unsigned long, ...);
struct socket *rtems_bsdnet_fdToSocket (int fd);
int rtems_bsdnet_makeFdForSocket (struct socket *);
int rtems_bsdnet_makeFdForSocket (void *);
/*
* Events used by networking routines.