Changeset 879 for trunk/src/ash-messup/exec.h
- Timestamp:
- Apr 21, 2007, 8:33:35 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ash-messup/exec.h
r626 r879 60 60 #define DO_ALTBLTIN 0x20 /* %builtin in alt. path */ 61 61 62 extern const char *pathopt;/* set by padvance */62 /*extern const char *pathopt;*/ /* set by padvance */ 63 63 64 void shellexec( char **, char **, const char *, int, int)64 void shellexec(struct shinstance *, char **, char **, const char *, int, int) 65 65 __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);66 char *padvance(struct shinstance *, const char **, const char *); 67 int hashcmd(struct shinstance *, int, char **); 68 void find_command(struct shinstance *, char *, struct cmdentry *, int, const char *); 69 int (*find_builtin(struct shinstance *, char *))(struct shinstance *, int, char **); 70 int (*find_splbltin(struct shinstance *, char *))(struct shinstance *, int, char **); 71 void hashcd(struct shinstance *); 72 void changepath(struct shinstance *, const char *); 73 void deletefuncs(struct shinstance *); 74 void getcmdentry(struct shinstance *, char *, struct cmdentry *); 75 void addcmdentry(struct shinstance *, char *, struct cmdentry *); 76 void defun(struct shinstance *, char *, union node *); 77 int unsetfunc(struct shinstance *, char *); 78 int typecmd(struct shinstance *, int, char **); 79 void hash_special_builtins(struct shinstance *);
Note:
See TracChangeset
for help on using the changeset viewer.