Ignore:
Timestamp:
Oct 8, 2007, 2:24:31 AM (18 years ago)
Author:
bird
Message:

more fixes - it all compiles now (linking fails of course).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kash/shfile.h

    r1218 r1222  
    2929
    3030#include "shtypes.h"
     31#include "shthread.h"
    3132#include <fcntl.h>
    3233#include <sys/stat.h>
     
    116117} shfdtab;
    117118
    118 int shfile_open(shfdtab *, const char *, unsigned);
     119int shfile_open(shfdtab *, const char *, unsigned, mode_t);
    119120int shfile_pipe(shfdtab *, int [2]);
    120121int shfile_close(shfdtab *, unsigned);
     
    129130int shfile_chdir(shfdtab *, const char *);
    130131char *shfile_getcwd(shfdtab *, char *, int);
     132int shfile_access(shfdtab *, const char *, int);
    131133int shfile_isatty(shfdtab *, int);
    132134int shfile_ioctl(shfdtab *, int, unsigned long, void *);
    133 int shfile_access(shfdtab *, const char *, int);
    134135#ifdef _MSC_VER
    135136# define TIOCGWINSZ         0x4201
     
    144145typedef struct winsize sh_winsize;
    145146#endif
     147mode_t shfile_get_umask(shfdtab *);
     148
    146149
    147150typedef struct sh_dirent
Note: See TracChangeset for help on using the changeset viewer.