Ignore:
Timestamp:
May 19, 2003, 5:52:55 PM (22 years ago)
Author:
bird
Message:

#434: declaration fixes.

File:
1 edited

Legend:

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

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r189 r190  
    2020
    2121struct stat;
    22 struct _fd_set;
     22struct fd_set;
    2323struct timeval;
    2424
     
    3838int fsync (int);
    3939int ftruncate (int, long);
    40 int ioctl (int, int request, ...);
     40int ioctl (int, unsigned long request, ...);
    4141int isatty (int);
    4242long lseek (int, long, int);
     
    4646int pipe (int *);
    4747int read (int, void *, size_t);
    48 int select (int, struct _fd_set *, struct _fd_set *, struct _fd_set *,
    49     struct timeval *);
     48int select (int, struct fd_set *, struct fd_set *, struct fd_set *, struct timeval *);
    5049int setmode (int, int);
    5150int sopen (__const__ char *, int, int, ...);
     
    7170int _ftruncate (int, long);
    7271int _imphandle (int);
    73 int _ioctl (int, int request, ...);
     72int _ioctl (int, unsigned long request, ...);
    7473int _isatty (int);
    7574int _isterm (int);
     
    8180int _read (int, void *, size_t);
    8281int _seek_hdr (int);
    83 int _select (int, struct _fd_set *, struct _fd_set *, struct _fd_set *,
    84     struct timeval *);
     82int _select (int, struct fd_set *, struct fd_set *, struct fd_set *, struct timeval *);
    8583int _setmode (int, int);
    8684int _sopen (__const__ char *, int, int, ...);
Note: See TracChangeset for help on using the changeset viewer.