This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/ProbLog/simplecudd_lfi/allocate.h

31 lines
581 B
C

/******************************************************************
**
** ALLOCATE.H:
**
** Allocation Routines
**
** This file is part of Apt Computing Tools (ACT)
** Copyright (c) 1991 -- Apt Technologies
** All rights reserved
**
******************************************************************/
#ifndef ALLOCATE_H
#define ALLOCATE_H
/* ----------- Headers */
#include "apt.h"
/* ----------- Exported Function Prototypes */
#ifdef __ANSI_C__
void *Allocate(int);
void Free(void*);
#else
void *Allocate();
void Free();
#endif /* __ANSI_C__ */
#endif /* ALLOCATE_H */