Browse Source

sync code-style patch from libsl

master
Hiltjo Posthuma 2 years ago
parent
commit
e0dee91145
1 changed files with 12 additions and 11 deletions
  1. +12
    -11
      util.c

+ 12
- 11
util.c View File

@ -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;
}

Loading…
Cancel
Save