Changeset 3475 for trunk/src/kash/exec.h
- Timestamp:
- Sep 16, 2020, 11:18:31 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/exec.h
r3438 r3475 47 47 48 48 union param { 49 int index; 49 struct 50 { 51 int index; 52 int suffix; /* PC suffix index */ 53 } n; 50 54 int (*bltin)(struct shinstance*, int, char**); 51 55 union node *func; … … 74 78 void subshellinitexec(shinstance *, shinstance *); 75 79 #endif 76 SH_NORETURN_1 void shellexec(struct shinstance *, char **, char **, const char *, int ) SH_NORETURN_2;80 SH_NORETURN_1 void shellexec(struct shinstance *, char **, char **, const char *, int, int) SH_NORETURN_2; 77 81 char *padvance(struct shinstance *, const char **, const char *); 78 82 int hashcmd(struct shinstance *, int, char **);
Note:
See TracChangeset
for help on using the changeset viewer.