diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2019-04-01 21:07:32 +0100 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2019-04-01 21:07:32 +0100 |
commit | 2768c028d62c28288144ab5c6d9027faddf17f30 (patch) | |
tree | 4de0f4db211227d8fb36fac0be9d0f74dac6f480 | |
parent | abdec72240aec2f20778088cbc96b199b4f9c2b2 (diff) | |
download | LibXtract-2768c028d62c28288144ab5c6d9027faddf17f30.tar.gz LibXtract-2768c028d62c28288144ab5c6d9027faddf17f30.tar.bz2 LibXtract-2768c028d62c28288144ab5c6d9027faddf17f30.zip |
Remove unneeded platform-specific headers
-rwxr-xr-x | src/c-ringbuf/ringbuf.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/c-ringbuf/ringbuf.c b/src/c-ringbuf/ringbuf.c index 9e2fffa..4d0b0e8 100755 --- a/src/c-ringbuf/ringbuf.c +++ b/src/c-ringbuf/ringbuf.c @@ -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 |