summaryrefslogtreecommitdiff
path: root/monitor_mm.c
diff options
context:
space:
mode:
authorderaadt@openbsd.org <deraadt@openbsd.org>2015-01-20 23:14:00 +0000
committerDamien Miller <djm@mindrot.org>2015-01-26 23:58:53 +1100
commit087266ec33c76fc8d54ac5a19efacf2f4a4ca076 (patch)
tree71f57bb41b61561ebaa13026d8dc5d04d9829b00 /monitor_mm.c
parent57e783c8ba2c0797f93977e83b2a8644a03065d8 (diff)
upstream commit
Reduce use of <sys/param.h> and transition to <limits.h> throughout. ok djm markus
Diffstat (limited to 'monitor_mm.c')
-rw-r--r--monitor_mm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor_mm.c b/monitor_mm.c
index 0ba0658a1..f224fb67e 100644
--- a/monitor_mm.c
+++ b/monitor_mm.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: monitor_mm.c,v 1.19 2014/01/04 17:50:55 tedu Exp $ */ 1/* $OpenBSD: monitor_mm.c,v 1.20 2015/01/20 23:14:00 deraadt Exp $ */
2/* 2/*
3 * Copyright 2002 Niels Provos <provos@citi.umich.edu> 3 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
4 * All rights reserved. 4 * All rights reserved.
@@ -30,7 +30,6 @@
30#ifdef HAVE_SYS_MMAN_H 30#ifdef HAVE_SYS_MMAN_H
31#include <sys/mman.h> 31#include <sys/mman.h>
32#endif 32#endif
33#include <sys/param.h>
34#include "openbsd-compat/sys-tree.h" 33#include "openbsd-compat/sys-tree.h"
35 34
36#include <errno.h> 35#include <errno.h>
@@ -38,6 +37,7 @@
38#include <stddef.h> 37#include <stddef.h>
39#include <stdlib.h> 38#include <stdlib.h>
40#include <string.h> 39#include <string.h>
40#include <limits.h>
41 41
42#include "xmalloc.h" 42#include "xmalloc.h"
43#include "ssh.h" 43#include "ssh.h"