Corrected prototype to confirm to POSIX 1003.1b.

This commit is contained in:
Joel Sherrill
1998-12-14 23:01:43 +00:00
parent b2e180b70a
commit e22d644abe
6 changed files with 12 additions and 30 deletions

View File

@@ -14,13 +14,10 @@
#include "libio_.h" #include "libio_.h"
/* XXX newlib has the prototype for this wrong. It will be a bit painful */ ssize_t read(
/* XXX to fix so we are choosing to delay fixing this. */
int read(
int fd, int fd,
void *buffer, void *buffer,
unsigned32 count size_t count
) )
{ {
int rc; /* XXX change to a size_t when prototype is fixed */ int rc; /* XXX change to a size_t when prototype is fixed */

View File

@@ -22,13 +22,10 @@
* to the file associated with the open file descriptor, fildes. * to the file associated with the open file descriptor, fildes.
*/ */
/* XXX newlib has the prototype for this wrong. It will be a bit painful */ ssize_t write(
/* XXX to fix so we are choosing to delay fixing this. */
int write( /* XXX this should return a ssize_t */
int fd, int fd,
const void *buffer, const void *buffer,
unsigned32 count /* XXX this should be a size_t */ size_t count
) )
{ {
rtems_status_code rc; rtems_status_code rc;

View File

@@ -14,13 +14,10 @@
#include "libio_.h" #include "libio_.h"
/* XXX newlib has the prototype for this wrong. It will be a bit painful */ ssize_t read(
/* XXX to fix so we are choosing to delay fixing this. */
int read(
int fd, int fd,
void *buffer, void *buffer,
unsigned32 count size_t count
) )
{ {
int rc; /* XXX change to a size_t when prototype is fixed */ int rc; /* XXX change to a size_t when prototype is fixed */

View File

@@ -22,13 +22,10 @@
* to the file associated with the open file descriptor, fildes. * to the file associated with the open file descriptor, fildes.
*/ */
/* XXX newlib has the prototype for this wrong. It will be a bit painful */ ssize_t write(
/* XXX to fix so we are choosing to delay fixing this. */
int write( /* XXX this should return a ssize_t */
int fd, int fd,
const void *buffer, const void *buffer,
unsigned32 count /* XXX this should be a size_t */ size_t count
) )
{ {
rtems_status_code rc; rtems_status_code rc;

View File

@@ -14,13 +14,10 @@
#include "libio_.h" #include "libio_.h"
/* XXX newlib has the prototype for this wrong. It will be a bit painful */ ssize_t read(
/* XXX to fix so we are choosing to delay fixing this. */
int read(
int fd, int fd,
void *buffer, void *buffer,
unsigned32 count size_t count
) )
{ {
int rc; /* XXX change to a size_t when prototype is fixed */ int rc; /* XXX change to a size_t when prototype is fixed */

View File

@@ -22,13 +22,10 @@
* to the file associated with the open file descriptor, fildes. * to the file associated with the open file descriptor, fildes.
*/ */
/* XXX newlib has the prototype for this wrong. It will be a bit painful */ ssize_t write(
/* XXX to fix so we are choosing to delay fixing this. */
int write( /* XXX this should return a ssize_t */
int fd, int fd,
const void *buffer, const void *buffer,
unsigned32 count /* XXX this should be a size_t */ size_t count
) )
{ {
rtems_status_code rc; rtems_status_code rc;