diff options
Diffstat (limited to 'monitor_mm.c')
-rw-r--r-- | monitor_mm.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/monitor_mm.c b/monitor_mm.c index b0ec37cff..dab747532 100644 --- a/monitor_mm.c +++ b/monitor_mm.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: monitor_mm.c,v 1.15 2006/08/03 03:34:42 deraadt Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright 2002 Niels Provos <provos@citi.umich.edu> | 3 | * Copyright 2002 Niels Provos <provos@citi.umich.edu> |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -24,14 +25,20 @@ | |||
24 | */ | 25 | */ |
25 | 26 | ||
26 | #include "includes.h" | 27 | #include "includes.h" |
27 | RCSID("$OpenBSD: monitor_mm.c,v 1.9 2004/05/11 19:01:43 deraadt Exp $"); | ||
28 | 28 | ||
29 | #include <sys/types.h> | ||
29 | #ifdef HAVE_SYS_MMAN_H | 30 | #ifdef HAVE_SYS_MMAN_H |
30 | #include <sys/mman.h> | 31 | #include <sys/mman.h> |
31 | #endif | 32 | #endif |
33 | #include <sys/param.h> | ||
34 | #include "openbsd-compat/sys-tree.h" | ||
35 | |||
36 | #include <errno.h> | ||
37 | #include <stdarg.h> | ||
38 | #include <string.h> | ||
32 | 39 | ||
33 | #include "ssh.h" | ||
34 | #include "xmalloc.h" | 40 | #include "xmalloc.h" |
41 | #include "ssh.h" | ||
35 | #include "log.h" | 42 | #include "log.h" |
36 | #include "monitor_mm.h" | 43 | #include "monitor_mm.h" |
37 | 44 | ||