Made valid prototypes by adding ( void ) as parameter prototype
diff --git a/include/polarssl/memory_buffer_alloc.h b/include/polarssl/memory_buffer_alloc.h
index 053b1dd..ccddc00 100644
--- a/include/polarssl/memory_buffer_alloc.h
+++ b/include/polarssl/memory_buffer_alloc.h
@@ -66,7 +66,7 @@
/**
* \brief Free the mutex for thread-safety and clear remaining memory
*/
-void memory_buffer_alloc_free();
+void memory_buffer_alloc_free( void );
/**
* \brief Determine when the allocator should automatically verify the state
@@ -85,7 +85,7 @@
* Prints out a list of 'still allocated' blocks and their stack
* trace if POLARSSL_MEMORY_BACKTRACE is defined.
*/
-void memory_buffer_alloc_status();
+void memory_buffer_alloc_status( void );
#endif /* POLARSSL_MEMORY_DEBUG */
/**
@@ -99,7 +99,7 @@
*
* \returns 0 if verified, 1 otherwise
*/
-int memory_buffer_alloc_verify();
+int memory_buffer_alloc_verify( void );
#ifdef __cplusplus
}