diff options
| author | christos <christos@NetBSD.org> | 2013-04-11 19:00:41 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2013-04-11 19:00:41 +0000 |
| commit | 4a62b1ebcc7cfd575fd413deb6817c305b78173b (patch) | |
| tree | be634f05b69650a050c080db081bd2d380157e63 /gnu | |
| parent | 13c62a6d325d74e7cadf5ae1cfd5e5b48a8a97eb (diff) | |
fix argument passing.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/dist/bc/bc/scan.l | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/dist/bc/bc/scan.l b/gnu/dist/bc/bc/scan.l index b4addaac597..1478688ebf2 100644 --- a/gnu/dist/bc/bc/scan.l +++ b/gnu/dist/bc/bc/scan.l @@ -80,10 +80,7 @@ null_prompt (EditLine *el) */ static void -bcel_input (buf, result, max) - char *buf; - int *result; - int max; +bcel_input (char *buf, yy_size_t *result, int max) { if (!edit || yyin != stdin) { |
