diff options
author | Hiltjo Posthuma | 2022-08-08 10:42:54 +0200 |
---|---|---|
committer | Hiltjo Posthuma | 2022-08-08 10:42:54 +0200 |
commit | e35976f4a50f884c2162f71e4128d7c273e3e042 (patch) | |
tree | 06b9ecea83600701bcb29eb668f754825b002a16 | |
parent | 28fb3e28120db29ea45d1951eee7047b4109ab5f (diff) |
sync code-style patch from libsl
-rw-r--r-- | util.c | 23 |
1 files changed, 12 insertions, 11 deletions
@@ -6,18 +6,9 @@ #include "util.h" -void * -ecalloc(size_t nmemb, size_t size) -{ - void *p; - - if (!(p = calloc(nmemb, size))) - die("calloc:"); - return p; -} - void -die(const char *fmt, ...) { +die(const char *fmt, ...) +{ va_list ap; va_start(ap, fmt); @@ -33,3 +24,13 @@ die(const char *fmt, ...) { exit(1); } + +void * +ecalloc(size_t nmemb, size_t size) +{ + void *p; + + if (!(p = calloc(nmemb, size))) + die("calloc:"); + return p; +} |