Changeset dcec5a4 in rtems for c/src/lib/include


Ignore:
Timestamp:
01/29/97 00:29:25 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
551cb1c
Parents:
634e746
Message:

Merged newlib's libgloss support for rtems into this directory. This
should simplify the build process.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/include/rtems/libio.h

    r634e746 rdcec5a4  
    1313#ifndef _RTEMS_LIBIO_H
    1414#define _RTEMS_LIBIO_H
     15
     16#include <sys/stat.h>
    1517
    1618typedef unsigned32 rtems_libio_offset_t;
     
    8991void rtems_libio_init(void);
    9092
    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);
     93int __rtems_open(const char  *pathname, unsigned32 flag, unsigned32 mode);
     94int __rtems_close(int  fd);
     95int __rtems_read(int fd, void *buffer, unsigned32 count);
     96int __rtems_write(int fd, const void *buffer, unsigned32 count);
     97int __rtems_ioctl(int fd, unsigned32  command, void *buffer);
     98int __rtems_lseek(int fd, rtems_libio_offset_t offset, int whence);
     99int __rtems_fstat(int _fd, struct stat* _sbuf);
     100int __rtems_isatty(int _fd);
    97101
    98102#endif /* _RTEMS_LIBIO_H */
Note: See TracChangeset for help on using the changeset viewer.