Changeset 2415 for trunk/src/kash/exec.h


Ignore:
Timestamp:
Sep 14, 2010, 1:13:20 AM (15 years ago)
Author:
bird
Message:

kash: trimmed down the arith stuff, making it not drag in libc bits.

File:
1 edited

Legend:

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

    r2298 r2415  
    4646
    4747
     48union param {
     49        int index;
     50        int (*bltin)(struct shinstance*, int, char**);
     51        union node *func;
     52};
     53
    4854struct cmdentry {
    4955        int cmdtype;
    50         union param {
    51                 int index;
    52                 int (*bltin)(struct shinstance*, int, char**);
    53                 union node *func;
    54         } u;
     56        union param u;
    5557};
    5658
Note: See TracChangeset for help on using the changeset viewer.