Make a guess:

 * the suitability of this software for any purpose.  It is provided "as is"
 * without express or implied warranty.
 *
 * STANF - System for Automated     Input,   November   1989
 *
 * Alternatively, the contents of this file may be used under the terms of
 * the GNU General Public License Version 2 or later (the "GPL"), in which
 * case the provisions of the GPL are applicable instead of the
 * above.  If you wish to allow the use of your version of this file
 * only under the terms of the GPL and not to allow others to use
 * your version of this file under the MPL, indicate your decision by
 * deleting the provisions above and replace them with the notice and
 * other provisions required by the GPL.  If you do not delete the
 * provisions above, a recipient may use your version of this file
 * under either the MPL or the GPL.
 */

#ifndef SLMALLOC_H
#define SLMALLOC_H

#ifdef __cplusplus
extern "C" {
#endif

#ifdef __sgi
#include <slang.h>
#else
#include <slang.h>
#endif

#ifndef SLCALLOC_H
#define SLCALLOC_H

typedef void *(*SLCALLOC_FN) (size_t);

SLCALLOC_FN slcalloc (size_t, size_t);

#ifdef __cplusplus
}
#endif

#endif

#endif