commit 927b3c28fa58faec19e631eebb38fea21bf805cb
parent f1c495db6a734ee02187c7636a830d36f3beccb8
Author: Antoine Amarilli <a3nm@a3nm.net>
Date: Thu, 28 Jun 2012 15:45:56 +0200
remove useless macros
Diffstat:
1 file changed, 0 insertions(+), 4 deletions(-)
diff --git a/nlsplit_read.c b/nlsplit_read.c
@@ -14,10 +14,6 @@ int size;
#define E_SYNTAX 1
#define E_MEMORY 2
-#define MAX(a, b) (((a) > (b)) ? (a) : (b))
-#define MIN(a, b) (((a) < (b)) ? (a) : (b))
-#define MID(l, r, s) ((((l) + ((r) + ((l) > (r) ? (s) : 0)))/2) % (s))
-
void usage(char** argv) {
/* show usage and exit */
fprintf(stderr, "Usage: %s SIZE\n", argv[0]);