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"
/* XXX newlib has the prototype for this wrong. It will be a bit painful */
/* XXX to fix so we are choosing to delay fixing this. */
int read(
ssize_t read(
int fd,
void *buffer,
unsigned32 count
size_t count
)
{
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.
*/
/* XXX newlib has the prototype for this wrong. It will be a bit painful */
/* XXX to fix so we are choosing to delay fixing this. */
int write( /* XXX this should return a ssize_t */
ssize_t write(
int fd,
const void *buffer,
unsigned32 count /* XXX this should be a size_t */
size_t count
)
{
rtems_status_code rc;

View File

@@ -14,13 +14,10 @@
#include "libio_.h"
/* XXX newlib has the prototype for this wrong. It will be a bit painful */
/* XXX to fix so we are choosing to delay fixing this. */
int read(
ssize_t read(
int fd,
void *buffer,
unsigned32 count
size_t count
)
{
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.
*/
/* XXX newlib has the prototype for this wrong. It will be a bit painful */
/* XXX to fix so we are choosing to delay fixing this. */
int write( /* XXX this should return a ssize_t */
ssize_t write(
int fd,
const void *buffer,
unsigned32 count /* XXX this should be a size_t */
size_t count
)
{
rtems_status_code rc;

View File

@@ -14,13 +14,10 @@
#include "libio_.h"
/* XXX newlib has the prototype for this wrong. It will be a bit painful */
/* XXX to fix so we are choosing to delay fixing this. */
int read(
ssize_t read(
int fd,
void *buffer,
unsigned32 count
size_t count
)
{
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.
*/
/* XXX newlib has the prototype for this wrong. It will be a bit painful */
/* XXX to fix so we are choosing to delay fixing this. */
int write( /* XXX this should return a ssize_t */
ssize_t write(
int fd,
const void *buffer,
unsigned32 count /* XXX this should be a size_t */
size_t count
)
{
rtems_status_code rc;