From 06950aab233de6a2f47293d59575bb42f6131660 Mon Sep 17 00:00:00 2001 From: Joel Klinghed Date: Wed, 27 Jan 2021 22:06:49 +0100 Subject: Complete rewrite using C++ and with shared state support --- src/macros.h | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/macros.h (limited to 'src/macros.h') diff --git a/src/macros.h b/src/macros.h deleted file mode 100644 index 06d59c6..0000000 --- a/src/macros.h +++ /dev/null @@ -1,19 +0,0 @@ -/** - * \file macros.h - * Part of common.h, defines common small macros if needed - */ - -#ifndef MACROS_H -#define MACROS_H - -#ifndef MIN -/** x < y ? x : y */ -# define MIN(_x, _y) (((_x) < (_y)) ? (_x) : (_y)) -#endif - -#ifndef MAX -/** x > y ? x : y */ -# define MAX(_x, _y) (((_x) > (_y)) ? (_x) : (_y)) -#endif - -#endif /* MACROS_H */ -- cgit v1.2.3-70-g09d2