diff options
author | Roland McGrath <roland@gnu.org> | 1999-07-11 01:55:52 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-07-11 01:55:52 +0000 |
commit | d6da7d4243d460a3afd1f11cec7335ee7b7b48d2 (patch) | |
tree | 2f83fe45da484acd4049d27a0855a049726609a8 /libps | |
parent | 28de51851d4fbc2ccdf73cbd77c34b0497ca40d9 (diff) |
1999-07-10 Roland McGrath <roland@baalperazim.frob.com>
* common.h: Add #include <sys/mman.h> for munmap decl.
Diffstat (limited to 'libps')
-rw-r--r-- | libps/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libps/common.h b/libps/common.h index abc04682..6c44641e 100644 --- a/libps/common.h +++ b/libps/common.h @@ -18,6 +18,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include <sys/mman.h> + #define ABS(x) ((x) < 0 ? -(x) : (x)) #define MAX(x, y) ((x) < (y) ? (y) : (x)) #define MIN(x, y) ((x) < (y) ? (x) : (y)) |