diff options
author | Yang Tse <yangsita@gmail.com> | 2011-09-16 21:12:32 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-09-16 21:12:32 +0200 |
commit | 93579cc36337f31de7b247ae3e49ad4f3e5f9673 (patch) | |
tree | 0d48c48b926fb5e418e8f26f7da9cd5a9a27087e /src | |
parent | 4322d512ea7fcbfe4939cbc86a92540606a0f68f (diff) |
src/setup.h: add conditional include of assert.h
Diffstat (limited to 'src')
-rw-r--r-- | src/setup.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/setup.h b/src/setup.h index fb6f4e62f..c7e7cf98e 100644 --- a/src/setup.h +++ b/src/setup.h @@ -149,6 +149,10 @@ #endif #include <stdio.h> +#ifdef HAVE_ASSERT_H +#include <assert.h> +#endif + #ifdef __TANDEM #include <floss.h> |