diff options
author | Damien Miller <djm@mindrot.org> | 2015-02-23 23:04:32 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-02-23 23:04:32 +0100 |
commit | 9af21979c00652029e160295e988dea40758ece2 (patch) | |
tree | 7f869b75a0d9c60c8b6ba0804e378ced4ddaa11f /monitor_mm.c | |
parent | nother sys/queue.h -> sys-queue.h fix (diff) | |
download | openssh-9af21979c00652029e160295e988dea40758ece2.tar.xz openssh-9af21979c00652029e160295e988dea40758ece2.zip |
don't include stdint.h unless HAVE_STDINT_H set
Diffstat (limited to 'monitor_mm.c')
-rw-r--r-- | monitor_mm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/monitor_mm.c b/monitor_mm.c index 50731527c..aa47b2ed5 100644 --- a/monitor_mm.c +++ b/monitor_mm.c @@ -35,7 +35,9 @@ #include <errno.h> #include <stdarg.h> #include <stddef.h> +#ifdef HAVE_STDINT_H #include <stdint.h> +#endif #include <stdlib.h> #include <string.h> |