prevent multiple includes

This commit is contained in:
ceriel
1988-09-27 09:50:34 +00:00
parent cd0de149ae
commit eb533b6430
3 changed files with 9 additions and 3 deletions

View File

@@ -3,8 +3,8 @@
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
#ifndef ALLOC_INCLUDED
#define ALLOC_INCLUDED
#ifndef __ALLOC_INCLUDED__
#define __ALLOC_INCLUDED__
/* PROGRAM'S INTERFACE TO MEMORY ALLOCATION ROUTINES */
/* This file serves as the interface between the program and the
@@ -36,4 +36,4 @@ typedef struct _ALLOC_ {
#define st_free(ptr, phead, size) (botch((char *)(ptr), size), \
_A_st_free(ptr, phead, size))
#endif BOTCH_FREE
#endif ALLOC_INCLUDED
#endif __ALLOC_INCLUDED__