diff options
Diffstat (limited to 'coreutils/expr.c')
-rw-r--r-- | coreutils/expr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c index 854a657f9..191473446 100644 --- a/coreutils/expr.c +++ b/coreutils/expr.c | |||
@@ -49,6 +49,8 @@ typedef long arith_t; | |||
49 | #define STRTOL(s, e, b) strtol(s, e, b) | 49 | #define STRTOL(s, e, b) strtol(s, e, b) |
50 | #endif | 50 | #endif |
51 | 51 | ||
52 | /* TODO: use bb_strtol[l]? It's easier to check for errors... */ | ||
53 | |||
52 | /* A value is.... */ | 54 | /* A value is.... */ |
53 | struct valinfo { | 55 | struct valinfo { |
54 | TYPE type; /* Which kind. */ | 56 | TYPE type; /* Which kind. */ |