1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/* @(#)mem.c 1.5 06/09/13 Copyright 1998-2004 J. Schilling */
#ifndef lint
static char sccsid[] =
"@(#)mem.c 1.5 06/09/13 Copyright 1998-2004 J. Schilling";
#endif
/*
* Memory handling with error checking
*
* Copyright (c) 1998-2004 J. Schilling
*/
/*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* See the file CDDL.Schily.txt in this distribution for details.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file CDDL.Schily.txt from this distribution.
*/
#include <schily/mconfig.h>
#include <stdio.h>
#include <schily/stdlib.h>
#include <schily/unistd.h>
#include <schily/string.h>
#include <schily/standard.h>
#include <schily/schily.h>
#include <schily/nlsdefs.h>
#include "mem.h"
EXPORT void *__malloc __PR((size_t size, char *msg));
EXPORT void *__realloc __PR((void *ptr, size_t size, char *msg));
EXPORT char *__savestr __PR((const char *s));
EXPORT void *
__malloc(size, msg)
size_t size;
char *msg;
{
void *ret;
ret = malloc(size);
if (ret == NULL) {
comerr(gettext("Cannot allocate memory for %s.\n"), msg);
/* NOTREACHED */
}
return (ret);
}
EXPORT void *
__realloc(ptr, size, msg)
void *ptr;
size_t size;
char *msg;
{
void *ret;
if (ptr == NULL)
ret = malloc(size);
else
ret = realloc(ptr, size);
if (ret == NULL) {
comerr(gettext("Cannot realloc memory for %s.\n"), msg);
/* NOTREACHED */
}
return (ret);
}
EXPORT char *
__savestr(s)
const char *s;
{
char *ret = __malloc(strlen(s)+1, "saved string");
strcpy(ret, s);
return (ret);
}
|