43 lines
774 B
C
Executable File
43 lines
774 B
C
Executable File
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#ident "@(#)utils.c 1.4 92/07/14 SMI" /* SVr4.0 1.3 */
|
|
|
|
#include <stdio.h>
|
|
|
|
Malloc( size )
|
|
int size;
|
|
{
|
|
char *addr;
|
|
addr = (char *) malloc( (unsigned)size );
|
|
|
|
printf( "malloc( %d ) = 0x%x\n", size, addr );
|
|
|
|
return( (long)addr );
|
|
}
|
|
|
|
Free( addr )
|
|
char *addr;
|
|
{
|
|
|
|
printf( "free( 0x%x )\n", addr );
|
|
|
|
(void) free( addr );
|
|
}
|
|
|
|
Realloc( ptr, size )
|
|
char *ptr;
|
|
int size;
|
|
{
|
|
char *addr;
|
|
addr = (char *) realloc( ptr, size );
|
|
|
|
printf( "ralloc( 0x%x, %d ) = 0x%x\n", ptr, size, addr );
|
|
|
|
return( (long)addr );
|
|
}
|