blob: 650d4ba856fb2402ecee8f0c53ae2a71131bdc73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
*
* Copyright %G% Sun Microsystems, Inc. All Rights Reserved
*
*/
#pragma ident "%Z%%M% %I% %E% SMI"
char * ch_malloc( unsigned long size );
char * ch_realloc( char *block, unsigned long size );
char * ch_calloc( unsigned long nelem, unsigned long size );
char * ch_strdup( char *s1 );
void ch_free(void *ptr);
|