Changeset 732 for trunk/src/emx/include/io.h
- Timestamp:
- Sep 26, 2003, 4:41:32 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/io.h
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r731 r732 49 49 int access (__const__ char *, int); 50 50 int chmod (__const__ char *, int); 51 int chsize (int, long);51 int chsize (int, off_t); 52 52 int close (int); 53 53 int creat (const char *, mode_t); … … 55 55 int dup2 (int, int); 56 56 int eof (int); 57 longfilelength (int);57 off_t filelength (int); 58 58 int fstat (int, struct stat *); 59 59 int fsync (int); … … 77 77 int sopen (__const__ char *, int, int, ...); 78 78 int stat (__const__ char *, struct stat *); 79 longtell (int);79 off_t tell (int); 80 80 #ifndef _TRUNCATE_DECLARED 81 81 #define _TRUNCATE_DECLARED … … 91 91 int _access (__const__ char *, int); 92 92 int _chmod (__const__ char *, int); 93 int _chsize (int, long);93 int _chsize (int, off_t); 94 94 int _close (int); 95 95 int _creat (__const__ char *, int); … … 98 98 int _dup2 (int, int); 99 99 int _eof (int); 100 long_filelength (int);100 off_t _filelength (int); 101 101 int _fstat (int, struct stat *); 102 102 int _fsync (int); … … 123 123 int _sopen (__const__ char *, int, int, ...); 124 124 int _stat (__const__ char *, struct stat *); 125 long_tell (int);126 int _truncate (char *, long);125 off_t _tell (int); 126 int _truncate (char *, off_t); 127 127 int _umask (int); 128 128 int _unlink (__const__ char *); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.