From e1a7de44abb8b5874d3ac3c844dbf71e05c82dcd Mon Sep 17 00:00:00 2001 From: jgarcia Date: Mon, 1 Oct 2007 18:02:12 +0000 Subject: [PATCH] Prevent file ecl.h from being included more than once. --- src/h/ecl.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/h/ecl.h b/src/h/ecl.h index 4df1ffa1e..59b3dabe8 100644 --- a/src/h/ecl.h +++ b/src/h/ecl.h @@ -13,6 +13,9 @@ See file '../Copyright' for full details. */ +#ifndef ECL_H +#define ECL_H + #include /* size_t, pthread_t, pthread_mutex_t */ #include /* NULL, ptrdiff_t */ #include /* va_list */ @@ -62,3 +65,5 @@ typedef unsigned short uint16_t; #endif typedef void (*ecl_init_function_t)(cl_object block); + +#endif /* ECL_H */