diff th_util.h @ 462:a90fe2c4c636

Cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 10 May 2018 15:49:16 +0300
parents 347bfd3e017e
children bdee04d21282
line wrap: on
line diff
--- a/th_util.h	Sat Feb 17 23:42:49 2018 +0200
+++ b/th_util.h	Thu May 10 15:49:16 2018 +0300
@@ -145,10 +145,10 @@
 void    THMSG_V(int level, const char *fmt, va_list ap);
 void    THPRINT_V(int level, const char *fmt, va_list ap);
 
-void    *th_malloc(size_t);
-void    *th_malloc0(size_t);
-void    *th_calloc(size_t, size_t);
-void    *th_realloc(void *ptr, size_t);
+void    *th_malloc(size_t len);
+void    *th_malloc0(size_t len);
+void    *th_calloc(size_t n, size_t len);
+void    *th_realloc(void *ptr, size_t len);
 void    th_free(void *ptr);
 void    th_free_r_real(void **ptr);