From 8a8d0d9151377ce9ac8a5d76067838171b3db9ee Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 26 Sep 1988 15:11:25 +0000 Subject: [PATCH] prevent multiple includes --- modules/src/alloc/alloc.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/src/alloc/alloc.h b/modules/src/alloc/alloc.h index 612e6b8e8..50c789dbe 100644 --- a/modules/src/alloc/alloc.h +++ b/modules/src/alloc/alloc.h @@ -3,6 +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 /* PROGRAM'S INTERFACE TO MEMORY ALLOCATION ROUTINES */ /* This file serves as the interface between the program and the @@ -34,3 +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 -- 2.34.1