From 1dea703d18283cbed52d78b4389d2a8cda88719c Mon Sep 17 00:00:00 2001 From: Andrew Bettison Date: Thu, 3 Apr 2014 10:43:14 +1030 Subject: [PATCH] Remove spurious rotbuf_log() declaration, fixes #75 --- rotbuf.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/rotbuf.h b/rotbuf.h index f138f7a0..71283c84 100644 --- a/rotbuf.h +++ b/rotbuf.h @@ -133,8 +133,6 @@ __ROTBUF_INLINE size_t rotbuf_count(struct rotbuf *rb) return rb->wrap ? (size_t)((rb->ebuf - rb->buf) + rb->wrap - 1) : rotbuf_position(rb); } -void rotbuf_log(struct __sourceloc __whence, int log_level, const char *prefix, const struct rotbuf *rb); - /* Advance the cursor by a given number of bytes (non negative). Advancing the cursor over the * final byte in the buffer sets the 'wrap' counter to 1. All further advances are simply added to * the 'wrap' counter.