Deleted Added
full compact
35c35
< * $Id: openpam_impl.h 499 2011-11-22 11:51:50Z des $
---
> * $Id: openpam_impl.h 594 2012-04-14 14:18:41Z des $
160c160,164
< #define FREE(p) do { free((p)); (p) = NULL; } while (0)
---
> #define FREE(p) \
> do { \
> free(p); \
> (p) = NULL; \
> } while (0)
161a166,174
> #define FREEV(c, v) \
> do { \
> while (c) { \
> --(c); \
> FREE((v)[(c)]); \
> } \
> FREE(v); \
> } while (0)
>
163a177
> #include "openpam_features.h"