Ignore:
Timestamp:
Sep 26, 2003, 4:41:32 AM (22 years ago)
Author:
bird
Message:

#668: Initial changed related to Large File Support (>2GB).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/io.h

    • Property cvs2svn:cvs-rev changed from 1.6 to 1.7
    r731 r732  
    4949int access (__const__ char *, int);
    5050int chmod (__const__ char *, int);
    51 int chsize (int, long);
     51int chsize (int, off_t);
    5252int close (int);
    5353int creat (const char *, mode_t);
     
    5555int dup2 (int, int);
    5656int eof (int);
    57 long filelength (int);
     57off_t filelength (int);
    5858int fstat (int, struct stat *);
    5959int fsync (int);
     
    7777int sopen (__const__ char *, int, int, ...);
    7878int stat (__const__ char *, struct stat *);
    79 long tell (int);
     79off_t tell (int);
    8080#ifndef _TRUNCATE_DECLARED
    8181#define _TRUNCATE_DECLARED
     
    9191int _access (__const__ char *, int);
    9292int _chmod (__const__ char *, int);
    93 int _chsize (int, long);
     93int _chsize (int, off_t);
    9494int _close (int);
    9595int _creat (__const__ char *, int);
     
    9898int _dup2 (int, int);
    9999int _eof (int);
    100 long _filelength (int);
     100off_t _filelength (int);
    101101int _fstat (int, struct stat *);
    102102int _fsync (int);
     
    123123int _sopen (__const__ char *, int, int, ...);
    124124int _stat (__const__ char *, struct stat *);
    125 long _tell (int);
    126 int _truncate (char *, long);
     125off_t _tell (int);
     126int _truncate (char *, off_t);
    127127int _umask (int);
    128128int _unlink (__const__ char *);
Note: See TracChangeset for help on using the changeset viewer.