From 851e4288c102cc4177d54d87aded43d003e85885 Mon Sep 17 00:00:00 2001 From: Bert Münnich Date: Wed, 28 Oct 2015 22:29:01 +0100 Subject: Prefix safe allocation functions with 'e' instead of 's_' --- util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'util.h') diff --git a/util.h b/util.h index c0ac98f..86abea8 100644 --- a/util.h +++ b/util.h @@ -61,9 +61,9 @@ typedef struct { int stlen; } r_dir_t; -void* s_malloc(size_t); -void* s_realloc(void*, size_t); -char* s_strdup(const char*); +void* emalloc(size_t); +void* erealloc(void*, size_t); +char* estrdup(const char*); void warn(const char*, ...); void die(const char*, ...); -- cgit v1.2.3