summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2007-11-17 10:26:21 +0000
committerLuigi Rizzo <rizzo@icir.org>2007-11-17 10:26:21 +0000
commit813fe778016f416259fe0343091866d7e1d51982 (patch)
treef3c159c92f69721415cfcc3f52948722790e669e /include
parent5914462817fa545d57cc28c5c17582388a63515c (diff)
some version of flex produce code that wants __STDC_VERSION__
defined, but the compiler does not always define it. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89370 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/compat.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asterisk/compat.h b/include/asterisk/compat.h
index 819ac4675..5d97f4915 100644
--- a/include/asterisk/compat.h
+++ b/include/asterisk/compat.h
@@ -20,6 +20,11 @@
#ifndef _COMPAT_H
#define _COMPAT_H
+#ifndef __STDC_VERSION__
+/* flex output wants to find this defined. */
+#define __STDC_VERSION__ 0
+#endif
+
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif