Changeset b06e68ef in rtems for c/src/lib/libc


Ignore:
Timestamp:
08/17/95 19:51:51 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
95fbca1
Parents:
3b438fa
Message:

Numerous miscellaneous features incorporated from Tony Bennett
(tbennett@…) including the following major additions:

+ variable length messages
+ named devices
+ debug monitor
+ association tables/variables

Location:
c/src/lib/libc
Files:
6 added
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libc/syscalls.c

    r3b438fa rb06e68ef  
    3636}
    3737
    38 int
    39 __close(int _fd)
    40 {
    41   /* return value usually ignored anyhow */
    42   return 0;
    43 }
    44 
    45 int
    46 __open(const char *filename)
    47 {
    48   /* always fail */
    49   return -1;
    50 }
    51 
    52 int
    53 __lseek(int _fd, off_t offset, int whence)
    54 {
    55   /* nothing is ever seekable */
    56   return -1;
    57 }
    58 
    5938int stat( const char *path, struct stat *buf )
    6039{
Note: See TracChangeset for help on using the changeset viewer.