summaryrefslogtreecommitdiff
path: root/ast_expr2.y
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-05-20 03:18:35 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-05-20 03:18:35 +0000
commit77284bfaa69f9a1b45553ef81b4082167d0dd588 (patch)
treed4f35106ab41d2fd11f27ae1bbd0ef0c27434f18 /ast_expr2.y
parent17e476378a561411e24e0ed2f60a7e9548d09e5b (diff)
fix Solaris compatibility issues (bug #4339)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5747 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'ast_expr2.y')
-rwxr-xr-xast_expr2.y4
1 files changed, 4 insertions, 0 deletions
diff --git a/ast_expr2.y b/ast_expr2.y
index be78d4645..14c84e856 100755
--- a/ast_expr2.y
+++ b/ast_expr2.y
@@ -18,7 +18,11 @@
#include <string.h>
#include <locale.h>
#include <ctype.h>
+#ifndef SOLARIS
#include <err.h>
+#else
+#define quad_t uint64_t
+#endif
#include <errno.h>
#include <regex.h>
#include <limits.h>