diff options
author | Keith Packard <keithp@keithp.com> | 2011-07-06 15:45:04 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-07-06 15:48:34 -0700 |
commit | 2ec986f08ce8d4635f4435bb0042b405d93edc40 (patch) | |
tree | 01b48c169ebf444219638e6d3132ff66afd1fe72 /src | |
parent | 355db71f4511adff8abcb2caded61c12fe8b7ee9 (diff) |
altos: Switch const for __code in struct ao_cmds
This saves quite a bit of code space when accessing these values.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/ao.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -395,7 +395,7 @@ ao_match_word(__code char *word); struct ao_cmds { void (*func)(void); - const char *help; + __code char *help; }; void |