From 67319adac2c1e99f2410cf3aee731d329ad6ea6e Mon Sep 17 00:00:00 2001 From: Kim Woelders Date: Mon, 22 Jan 2007 02:33:23 +0000 Subject: [PATCH] Fix multiple inclusions. SVN revision: 28098 --- config/definitions | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/definitions b/config/definitions index 11e2c63d..35bbec35 100644 --- a/config/definitions +++ b/config/definitions @@ -3,6 +3,8 @@ /* This file determines keyword values and conveience macros for E */ /* This file is sourced for every file E has to parse */ /*******************************************************************/ +#ifndef __E16_DEFINITIONS__ +#define __E16_DEFINITIONS__ /* section begin/end stuff */ #define __BGN 999 @@ -967,3 +969,5 @@ __END /*********** Directory definition macros **************************/ #define E_SCRIPTS_DIR ENLIGHTENMENT_ROOT/scripts/ + +#endif /* __E16_DEFINITIONS__ */