changeset 284:58af29df9008

Remove unneeded platform-specific headers
author Jamie Bullock <jamie@jamiebullock.com>
date Mon, 01 Apr 2019 21:07:32 +0100
parents 730dfd7d613d
children 89fe52066db1
files src/c-ringbuf/ringbuf.c
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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 <stdlib.h>
 #include <string.h>
 #include <sys/types.h>
-#include <sys/uio.h>
-#include <unistd.h>
-#include <sys/param.h>
 #include <assert.h>
 
 #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