openbsd-ports/editors/hexedit/patches/patch-hexedit_h
brad 1f1aa9a5f9 upgrade to hexedit 1.2.10
Based on a diff from Ben Hooper <ben at networkinsanity dot com>
2005-07-03 01:22:22 +00:00

25 lines
656 B
Plaintext

$OpenBSD: patch-hexedit_h,v 1.1 2005/07/03 01:24:09 brad Exp $
--- hexedit.h.orig Sat Jul 2 21:14:58 2005
+++ hexedit.h Sat Jul 2 21:15:31 2005
@@ -5,6 +5,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#if HAVE_FCNTL_H
@@ -42,8 +43,12 @@
#define ALT(c) ((c) | 0xa0)
#define DIE(M) { fprintf(stderr, M, progName); exit(1); }
#define FREE(p) if (p) free(p)
+#ifndef MIN
#define MIN(a, b) ((a) < (b) ? (a) : (b))
+#endif
+#ifndef MAX
#define MAX(a, b) ((a) > (b) ? (a) : (b))
+#endif
#define NORMAL A_NORMAL
#define MARKED A_REVERSE
#define MODIFIED A_BOLD