Code auditing weekend results and fixes committing.
[silc.git] / lib / silcutil / silcbufutil.h
index 1525375deb51371c6858258eee9628de74510396..6b41270aad5536d2881eaa33e4c4963dff4dac86 100644 (file)
@@ -21,8 +21,7 @@
 #ifndef SILCBUFUTIL_H
 #define SILCBUFUTIL_H
 
-#ifndef SILC_DEBUG             /* When we are not doing debugging we use
-                                  optimized inline buffer functions. */
+#include "silcbuffer.h"
 
 /* Clears and initialiazes the buffer to the state as if it was just
    allocated by silc_buffer_alloc. */
@@ -92,14 +91,4 @@ SilcBuffer silc_buffer_realloc(SilcBuffer sb, unsigned int newsize)
   return sb_new;
 }
 
-#endif /* !SILC_DEBUG */
-
-/* Prototypes */
-#ifdef SILC_DEBUG
-void silc_buffer_clear(SilcBuffer sb);
-SilcBuffer silc_buffer_copy(SilcBuffer sb);
-SilcBuffer silc_buffer_clone(SilcBuffer sb);
-SilcBuffer silc_buffer_realloc(SilcBuffer sb, unsigned int newsize);
-#endif
-
 #endif