diff options
-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)) |