aboutsummaryrefslogtreecommitdiffstats
path: root/ast_expr2.y
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-20 03:18:35 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-20 03:18:35 +0000
commit6fcde5d8bfd1338dfedc9b3a6cef9af34e7a9234 (patch)
treed4f35106ab41d2fd11f27ae1bbd0ef0c27434f18 /ast_expr2.y
parentc2ac8d62f9538611a67086e3c25293e5ad6dc63f (diff)
fix Solaris compatibility issues (bug #4339)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5747 f38db490-d61c-443f-a65b-d21fe96a405b
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>