diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-10 23:10:10 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-10 23:10:10 -0300 |
commit | f987424ed9954239ec0a730b721700ac58c1bf1a (patch) | |
tree | 702112d8935ab60b62597d3d0a98a492c9313aef /src/utils/mem.c | |
parent | 15d3beecdd227c08df600336dff9ecd2d5979136 (diff) | |
download | blogc-f987424ed9954239ec0a730b721700ac58c1bf1a.tar.gz blogc-f987424ed9954239ec0a730b721700ac58c1bf1a.tar.bz2 blogc-f987424ed9954239ec0a730b721700ac58c1bf1a.zip |
fixed a few issues reported by clang's static analyzer
Diffstat (limited to 'src/utils/mem.c')
-rw-r--r-- | src/utils/mem.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/utils/mem.c b/src/utils/mem.c index 04201ff..ff512df 100644 --- a/src/utils/mem.c +++ b/src/utils/mem.c @@ -6,6 +6,10 @@ * See the file COPYING. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif /* HAVE_CONFIG_H */ + #include <stdlib.h> #include <stdio.h> #include "utils.h" |