diff options
Diffstat (limited to 'src/c-ringbuf/ringbuf.c')
-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 |