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 /lib.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 'lib.h')
-rw-r--r-- | lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -148,7 +148,7 @@ struct vec { /* vec[-2] is allocated size */ /* vec[-1] is fill pointer */ val *vec; -#ifdef HAVE_VALGRIND +#if HAVE_VALGRIND val *vec_true_start; #endif }; |