using (void) instead of UNUSED

This commit is contained in:
Maxim Devaev
2024-02-16 01:51:36 +02:00
parent 63d87f0526
commit 46e630d2f6
4 changed files with 30 additions and 11 deletions

View File

@@ -57,7 +57,6 @@
#define RN "\r\n"
#define INLINE inline __attribute__((always_inline))
#define UNUSED __attribute__((unused))
#define US_CALLOC(x_dest, x_nmemb) assert(((x_dest) = calloc((x_nmemb), sizeof(*(x_dest)))) != NULL)
#define US_REALLOC(x_dest, x_nmemb) assert(((x_dest) = realloc((x_dest), (x_nmemb) * sizeof(*(x_dest)))) != NULL)