diff buffer.h @ 99:d534fdcbb319

Remove #ifdef __cplusplus
author David Demelier <markand@malikania.fr>
date Fri, 13 Jan 2012 22:48:08 +0100
parents b1a084c030c8
children 37eef6776cc6
line wrap: on
line diff
--- a/buffer.h	Fri Jan 13 19:43:02 2012 +0100
+++ b/buffer.h	Fri Jan 13 22:48:08 2012 +0100
@@ -21,10 +21,6 @@
 
 #include <stdarg.h>
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 #define	BUFFER_DEFAULT_BSIZE	512
 
 enum buffer_type {
@@ -51,8 +47,4 @@
 void		buffer_clear(struct buffer *);
 void		buffer_free(struct buffer *);
 
-#ifdef __cplusplus
-}
-#endif
-
 #endif /* _BUFFER_H_ */