Remove circular inclusion protection from ring buffer header

This commit is contained in:
Marcel Holtmann 2010-04-02 20:34:25 -07:00
parent 764501482e
commit 09f7be82a9
1 changed files with 0 additions and 13 deletions

View File

@ -19,13 +19,6 @@
*
*/
#ifndef __GATCHAT_RINGBUFFER_H
#define __GATCHAT_RINGBUFFER_H
#ifdef __cplusplus
extern "C" {
#endif
struct ring_buffer {
unsigned char *buffer;
unsigned int size;
@ -116,9 +109,3 @@ int ring_buffer_len_no_wrap(struct ring_buffer *buf);
* read counter was actually advanced.
*/
int ring_buffer_drain(struct ring_buffer *buf, unsigned int len);
#ifdef __cplusplus
}
#endif
#endif /* __GATCHAT_RINGBUFFER_H */