diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-01-10 07:23:56 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-01-10 07:23:56 -0800 |
commit | 7649cd2cc9165ad8019d9d33af697927fd2e64b4 (patch) | |
tree | c8fc015fea133e53a8ba96557b50887211cc6bd3 /txr.h | |
parent | 8817d95ca84e7ce4478a29a82b65632979125980 (diff) | |
download | txr-7649cd2cc9165ad8019d9d33af697927fd2e64b4.tar.gz txr-7649cd2cc9165ad8019d9d33af697927fd2e64b4.tar.bz2 txr-7649cd2cc9165ad8019d9d33af697927fd2e64b4.zip |
* configure: Generate HAVE_VALGRIND as #define-d to 1, rathern
than just fdefined.
* gc.c: Use #if HAVE_VALGRIND instaed of #ifdef HAVE_VALGRIND,
consistently with other HAVE_* config variables.
* lib.c: Likewise.
* lib.h: Likewise.
* txr.c: Likewise.
* txr.h: Likewise.
Diffstat (limited to 'txr.h')
-rw-r--r-- | txr.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ extern int opt_nobindings; extern int opt_lisp_bindings; extern int opt_arraydims; extern int opt_gc_debug; -#ifdef HAVE_VALGRIND +#if HAVE_VALGRIND extern int opt_vg_debug; #endif extern int opt_derivative_regex; |