Fixed prototype

This commit is contained in:
Joel Sherrill
1997-11-10 17:50:50 +00:00
parent 52e1708d71
commit a307f79f17
4 changed files with 4 additions and 4 deletions

View File

@@ -105,7 +105,7 @@ int __rtems_isatty(int _fd);
typedef struct {
int (*open)(const char *pathname, unsigned32 flag, unsigned32 mode);
int (*close)(int fd);
int (*read)(int fd, void *buffer);
int (*read)(int fd, void *buffer, unsigned32 count);
int (*write)(int fd, const void *buffer, unsigned32 count);
int (*ioctl)(int fd, unsigned32 command, void *buffer);
int (*lseek)(int fd, rtems_libio_offset_t offset, int whence);

View File

@@ -105,7 +105,7 @@ int __rtems_isatty(int _fd);
typedef struct {
int (*open)(const char *pathname, unsigned32 flag, unsigned32 mode);
int (*close)(int fd);
int (*read)(int fd, void *buffer);
int (*read)(int fd, void *buffer, unsigned32 count);
int (*write)(int fd, const void *buffer, unsigned32 count);
int (*ioctl)(int fd, unsigned32 command, void *buffer);
int (*lseek)(int fd, rtems_libio_offset_t offset, int whence);

View File

@@ -105,7 +105,7 @@ int __rtems_isatty(int _fd);
typedef struct {
int (*open)(const char *pathname, unsigned32 flag, unsigned32 mode);
int (*close)(int fd);
int (*read)(int fd, void *buffer);
int (*read)(int fd, void *buffer, unsigned32 count);
int (*write)(int fd, const void *buffer, unsigned32 count);
int (*ioctl)(int fd, unsigned32 command, void *buffer);
int (*lseek)(int fd, rtems_libio_offset_t offset, int whence);

View File

@@ -105,7 +105,7 @@ int __rtems_isatty(int _fd);
typedef struct {
int (*open)(const char *pathname, unsigned32 flag, unsigned32 mode);
int (*close)(int fd);
int (*read)(int fd, void *buffer);
int (*read)(int fd, void *buffer, unsigned32 count);
int (*write)(int fd, const void *buffer, unsigned32 count);
int (*ioctl)(int fd, unsigned32 command, void *buffer);
int (*lseek)(int fd, rtems_libio_offset_t offset, int whence);