diff options
author | Keith Packard <keithp@keithp.com> | 2010-08-27 00:10:29 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-08-27 00:10:29 -0700 |
commit | 2923cf5057f9cef110dd547d8677ea5b60e00796 (patch) | |
tree | 5322b641885f0c03d54c6e28eb4f088dc941cef1 /src/ao_cmd.c | |
parent | 68967157cee620ebedcc8c2ffd6fc7656532087b (diff) |
altos: prepare for sdcc 2.9.1
A few minor language changes -- non-standard keywords are now prefixed
with __, such as 'at', 'interrupt', 'naked'.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao_cmd.c')
-rw-r--r-- | src/ao_cmd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ao_cmd.c b/src/ao_cmd.c index 4a68fba4..a54a2316 100644 --- a/src/ao_cmd.c +++ b/src/ao_cmd.c @@ -263,13 +263,12 @@ ao_cmd_register(__code struct ao_cmds *cmds) } void -ao_cmd(void *parameters) +ao_cmd(void) { __xdata char c; __xdata uint8_t cmd, cmds; __code struct ao_cmds * __xdata cs; void (*__xdata func)(void); - (void) parameters; lex_echo = 1; for (;;) { |