diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-12-08 09:25:45 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-12-08 09:25:45 -0800 |
commit | b1088a2502cba1a61b862f708489c8d4baa722fe (patch) | |
tree | 431c989e35795e4aba2bbe28905ab0d71ca95036 /match.h | |
parent | d453ed5dfbd7dee9d281c2d03a43146e0509bbde (diff) | |
download | txr-b1088a2502cba1a61b862f708489c8d4baa722fe.tar.gz txr-b1088a2502cba1a61b862f708489c8d4baa722fe.tar.bz2 txr-b1088a2502cba1a61b862f708489c8d4baa722fe.zip |
C++ maintenance.
* eval.c (and_s, or_s): Redundant variables removed.
* match.h (do_s): extern storage class specifier added.
Diffstat (limited to 'match.h')
-rw-r--r-- | match.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ -val do_s; +extern val do_s; void match_init(void); val match_funcall(val name, val arg, val other_args); int extract(val spec, val filenames, val bindings); |