Changeset dcec5a4 in rtems for c/src/lib/include
- Timestamp:
- 01/29/97 00:29:25 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 551cb1c
- Parents:
- 634e746
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/include/rtems/libio.h
r634e746 rdcec5a4 13 13 #ifndef _RTEMS_LIBIO_H 14 14 #define _RTEMS_LIBIO_H 15 16 #include <sys/stat.h> 15 17 16 18 typedef unsigned32 rtems_libio_offset_t; … … 89 91 void rtems_libio_init(void); 90 92 91 int __open(const char *pathname, unsigned32 flag, unsigned32 mode); 92 int __close(int fd); 93 int __read(int fd, void *buffer, unsigned32 count); 94 int __write(int fd, const void *buffer, unsigned32 count); 95 int __ioctl(int fd, unsigned32 command, void *buffer); 96 int __lseek(int fd, rtems_libio_offset_t offset, int whence); 93 int __rtems_open(const char *pathname, unsigned32 flag, unsigned32 mode); 94 int __rtems_close(int fd); 95 int __rtems_read(int fd, void *buffer, unsigned32 count); 96 int __rtems_write(int fd, const void *buffer, unsigned32 count); 97 int __rtems_ioctl(int fd, unsigned32 command, void *buffer); 98 int __rtems_lseek(int fd, rtems_libio_offset_t offset, int whence); 99 int __rtems_fstat(int _fd, struct stat* _sbuf); 100 int __rtems_isatty(int _fd); 97 101 98 102 #endif /* _RTEMS_LIBIO_H */
Note: See TracChangeset
for help on using the changeset viewer.