ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/host/ihost-perl/plugins/libukcprog/e_malloc.c
Revision: 1.2
Committed: Fri Mar 28 16:30:32 2003 UTC (21 years, 7 months ago) by tdb
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -1 lines
State: FILE REMOVED
Log Message:
Removed some un-used code from CVS. We can always resurrect this later if
someone feels they want to work on it. Gone are the old perl ihost which
isn't needed now, winhost which is broken and shows no sign of being fixed,
and DBReporter. If someone wants to revive them, I'll undelete them :-)

File Contents

# Content
1 /* e_malloc() -- error checking malloc */
2
3 /* Copyright 1992 Godfrey Paul, University of Kent at Canterbury.
4 *
5 * You can do what you like with this source code as long as
6 * you don't try to make money out of it and you include an
7 * unaltered copy of this message (including the copyright).
8 */
9
10 char ukcprog_malloc_sccsid[] = "$Id: e_malloc.c,v 1.1 2002/03/08 14:37:29 tdb Exp $ UKC";
11
12 #ifndef __STDC__
13 #include <sys/types.h> /* for size_t */
14 #endif
15
16 #include <stdio.h> /* for NULL */
17 #include <stdlib.h>
18
19 #include "ukcprog.h"
20
21
22 voidptr
23 e_malloc(size)
24 size_t size;
25 {
26 char *ptr;
27
28 if ((ptr = malloc(size)) == NULL)
29 panic("malloc failed in e_malloc");
30
31 return ptr;
32 }