Skip to content
Snippets Groups Projects
Commit 813fe778 authored by Luigi Rizzo's avatar Luigi Rizzo
Browse files

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
parent 59144628
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment