/*
 * Copyright 06/07/95 Sun Microsystems, Inc. All Rights Reserved
 *
 * @(#)llib-lgpc 1.2 95/06/07 SMI
 *
 */

/* information for clint global program analyser: */

#ifdef __SVR4
extern void *malloc();
extern void *calloc();
extern void *realloc();
extern void *valloc();
extern void *memalign();
extern void free();
extern void exit();
extern void _exit();
#else
extern char *malloc();
extern char *calloc();
extern char *realloc();
extern char *valloc();
extern char *memalign();
extern int free();
extern void exit();
extern void _exit();
#endif
/* FUNCKIND:malloc=malloc */
/* FUNCKIND:calloc=calloc */
/* FUNCKIND:realloc=realloc */
/* FUNCKIND:valloc=malloc */
/* FUNCKIND:memalign=malloc */
/* FUNCKIND:free=free */
/* FUNCKIND:exit=exit */
/* FUNCKIND:_exit=exit */
