Ignore:
Timestamp:
Apr 21, 2007, 8:33:35 AM (18 years ago)
Author:
bird
Message:

hacking...

File:
1 edited

Legend:

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

    r626 r879  
    6060#define DO_ALTBLTIN     0x20    /* %builtin in alt. path */
    6161
    62 extern const char *pathopt;     /* set by padvance */
     62/*extern const char *pathopt;*/ /* set by padvance */
    6363
    64 void shellexec(char **, char **, const char *, int, int)
     64void shellexec(struct shinstance *, char **, char **, const char *, int, int)
    6565    __attribute__((__noreturn__));
    66 char *padvance(const char **, const char *);
    67 int hashcmd(int, char **);
    68 void find_command(char *, struct cmdentry *, int, const char *);
    69 int (*find_builtin(char *))(int, char **);
    70 int (*find_splbltin(char *))(int, char **);
    71 void hashcd(void);
    72 void changepath(const char *);
    73 void deletefuncs(void);
    74 void getcmdentry(char *, struct cmdentry *);
    75 void addcmdentry(char *, struct cmdentry *);
    76 void defun(char *, union node *);
    77 int unsetfunc(char *);
    78 int typecmd(int, char **);
    79 void hash_special_builtins(void);
     66char *padvance(struct shinstance *, const char **, const char *);
     67int hashcmd(struct shinstance *, int, char **);
     68void find_command(struct shinstance *, char *, struct cmdentry *, int, const char *);
     69int (*find_builtin(struct shinstance *, char *))(struct shinstance *, int, char **);
     70int (*find_splbltin(struct shinstance *, char *))(struct shinstance *, int, char **);
     71void hashcd(struct shinstance *);
     72void changepath(struct shinstance *, const char *);
     73void deletefuncs(struct shinstance *);
     74void getcmdentry(struct shinstance *, char *, struct cmdentry *);
     75void addcmdentry(struct shinstance *, char *, struct cmdentry *);
     76void defun(struct shinstance *, char *, union node *);
     77int unsetfunc(struct shinstance *, char *);
     78int typecmd(struct shinstance *, int, char **);
     79void hash_special_builtins(struct shinstance *);
Note: See TracChangeset for help on using the changeset viewer.