Ignore:
Timestamp:
Apr 22, 2007, 12:17:42 AM (18 years ago)
Author:
bird
Message:

hacking...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ash-messup/shfile.h

    r883 r884  
    5353
    5454int shfile_open(shfdtab *, const char *, unsigned);
     55int shfile_pipe(shfdtab *, int [2]);
    5556int shfile_close(shfdtab *, unsigned);
     57int shfile_fcntl(shfdtab *, int fd, int cmd, int arg);
     58#ifdef _MSC_VER
     59# define F_DUPFD    0
     60# define F_GETFD    1
     61# define F_SETFD    2
     62# define F_GETFL    3
     63# define F_SETFL    4
     64# define FD_CLOEXEC 1
     65#else
     66# include <sys/fcntl.h>
     67#endif
    5668
    5769int shfile_stat(shfdtab *, const char *, struct stat *);
Note: See TracChangeset for help on using the changeset viewer.