Skip to content
Snippets Groups Projects
Commit 8e24788f authored by Tim Wickberg's avatar Tim Wickberg
Browse files

remove redundant MIN/MAX macros

parent 6f87cdfe
No related branches found
No related tags found
No related merge requests found
......@@ -166,14 +166,6 @@ static int cbuf_is_valid (cbuf_t cb);
* Macros *
************/
#ifndef MAX
# define MAX(x,y) (((x) >= (y)) ? (x) : (y))
#endif /* !MAX */
#ifndef MIN
# define MIN(x,y) (((x) <= (y)) ? (x) : (y))
#endif /* !MIN */
#ifdef WITH_PTHREADS
# define cbuf_mutex_init(cb) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment