From 7b6fbd07a3e7580cf35955fd8d382e6cba0b0c27 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sat, 13 Feb 1999 04:34:11 +0000 Subject: [PATCH] (emalloc, erealloc): add git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5340 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/roken/roken-common.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/roken/roken-common.h b/lib/roken/roken-common.h index 1610ae6d5..8175a29a8 100644 --- a/lib/roken/roken-common.h +++ b/lib/roken/roken-common.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 1995, 1996, 1997, 1998 Kungliga Tekniska Högskolan + * Copyright (c) 1995, 1996, 1997, 1998, 1999 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * @@ -137,4 +137,7 @@ int ROKEN_LIB_FUNCTION simple_execlp(const char*, ...); void ROKEN_LIB_FUNCTION print_version(const char *); +void *ROKEN_LIB_FUNCTION emalloc (size_t); +void *ROKEN_LIB_FUNCTION erealloc (void *, size_t); + #endif /* __ROKEN_COMMON_H__ */