openldap/servers/slapd/ch_malloc.c
Hallvard Furuseth 523fd2c891 Fix most `wider type truncated to int' bugs on OSF1 due to implicit decls:
#include <stdlib.h>    to get malloc & co various places,
 #include <ac/string.h> to get strlen & co in (liblutil/setproctitle.c),
 declare ch_malloc & co (slurp.h), avl_find_lin (avl.h), Malloc (ud/edit.c).
Also changed ch_malloc & co from char* to void* functions.
1998-11-11 23:37:38 +00:00

63 lines
968 B
C

/* ch_malloc.c - malloc routines that test returns from malloc and friends */
#include "portable.h"
#include <stdio.h>
#include <ac/string.h>
#include <ac/socket.h>
#include "slap.h"
void *
ch_malloc(
unsigned long size
)
{
void *new;
if ( (new = (void *) malloc( size )) == NULL ) {
Debug( LDAP_DEBUG_ANY, "malloc of %d bytes failed\n", size, 0, 0 );
exit( 1 );
}
return( new );
}
void *
ch_realloc(
void *block,
unsigned long size
)
{
void *new;
if ( block == NULL ) {
return( ch_malloc( size ) );
}
if ( (new = (void *) realloc( block, size )) == NULL ) {
Debug( LDAP_DEBUG_ANY, "realloc of %d bytes failed\n", size, 0, 0 );
exit( 1 );
}
return( new );
}
void *
ch_calloc(
unsigned long nelem,
unsigned long size
)
{
void *new;
if ( (new = (void *) calloc( nelem, size )) == NULL ) {
Debug( LDAP_DEBUG_ANY, "calloc of %d elems of %d bytes failed\n",
nelem, size, 0 );
exit( 1 );
}
return( new );
}