# HG changeset patch # User Kim Alvefur # Date 1485054341 -3600 # Node ID db15e9f6d77fd41bb036201f01c541bcbfc521e2 # Parent 7702ce682427f880b609dc9246b6bf7feaf00fbe util.ringbuffer: Remove unused macros diff -r 7702ce682427 -r db15e9f6d77f util-src/ringbuffer.c --- a/util-src/ringbuffer.c Fri Jan 20 12:23:55 2017 +0100 +++ b/util-src/ringbuffer.c Sun Jan 22 04:05:41 2017 +0100 @@ -8,9 +8,6 @@ #include #include -#define MIN(a, b) ((a)>(b)?(b):(a)) -#define MAX(a, b) ((a)>(b)?(a):(b)) - typedef struct { size_t rpos; /* read position */ size_t wpos; /* write position */