summaryrefslogtreecommitdiff
path: root/ast_expr.y
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-12-15 16:07:35 +0000
committerMark Spencer <markster@digium.com>2004-12-15 16:07:35 +0000
commit467c5dbf9f2b7148fde428989ffd8a0d79d6e06f (patch)
tree7484282ca0a193588e1b043b807ec8bd8975ac4f /ast_expr.y
parentdd6a2322775d7b3cec5892d784647e5acff4353b (diff)
Fix quad_t (bug #3048)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4455 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'ast_expr.y')
-rwxr-xr-xast_expr.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/ast_expr.y b/ast_expr.y
index e90931f87..bbe174005 100755
--- a/ast_expr.y
+++ b/ast_expr.y
@@ -16,7 +16,7 @@
#ifndef SOLARIS
#include <err.h>
#else
-typedef uint64_t quad_t;
+#define quad_t uint64_t
#endif
#include <errno.h>
#include <regex.h>