# HG changeset patch # User Jamie Bullock # Date 1554149252 -3600 # Node ID 58af29df9008e7184e3b8b6a64f4df6f1357fa55 # Parent 730dfd7d613d0687bc2dedd622e5783ef16d459a Remove unneeded platform-specific headers diff -r 730dfd7d613d -r 58af29df9008 src/c-ringbuf/ringbuf.c --- a/src/c-ringbuf/ringbuf.c Mon Apr 01 21:07:13 2019 +0100 +++ b/src/c-ringbuf/ringbuf.c Mon Apr 01 21:07:32 2019 +0100 @@ -19,15 +19,11 @@ #include #include #include -#include -#include -#include #include #ifndef MIN #define MIN(x,y) ((x)>(y)?(y):(x)) #endif - /* * The code is written for clarity, not cleverness or performance, and * contains many assert()s to enforce invariant assumptions and catch