From: James Golovich Date: Wed, 28 Apr 2004 18:09:00 +0000 (+0000) Subject: Make sure causes.h can only be included once. Not that any code does this now, but... X-Git-Tag: 1.0.0-rc1~641 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=33faf463a0154f2c9d534d624ae9a7a07768feeb;p=thirdparty%2Fasterisk.git Make sure causes.h can only be included once. Not that any code does this now, but it could in the future. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2802 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/include/asterisk/causes.h b/include/asterisk/causes.h index e700690690..8f8e811fb1 100755 --- a/include/asterisk/causes.h +++ b/include/asterisk/causes.h @@ -11,6 +11,8 @@ * the GNU General Public License */ +#ifndef _ASTERISK_CAUSES_H +#define _ASTERISK_CAUSES_H #define AST_CAUSE_NOTDEFINED 0 #define AST_CAUSE_NORMAL 1 @@ -19,3 +21,4 @@ #define AST_CAUSE_CONGESTION 4 #define AST_CAUSE_UNALLOCATED 5 +#endif