Skip to content
Snippets Groups Projects
Commit c85b4a16 authored by Russell Bryant's avatar Russell Bryant
Browse files

on mac, QUAD_MIN and QUAD_MAX are already defined, so this causes a bunch

of warnings


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25684 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent d54ec2ce
No related branches found
No related tags found
No related merge requests found
......@@ -7,10 +7,10 @@
#define quad_t int64_t
#endif
#ifdef LONG_LONG_MIN
#if defined(LONG_LONG_MIN) && !defined(QUAD_MIN)
#define QUAD_MIN LONG_LONG_MIN
#endif
#ifdef LONG_LONG_MAX
#if defined(LONG_LONG_MAX) && !defined(QUAD_MAX)
#define QUAD_MAX LONG_LONG_MAX
#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