don't use unsigned in on Solaris, will break math expressions that are

supposed to generate negative results (related to issue #5050)


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6436 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-08-29 20:17:25 +00:00
parent d996db1ae9
commit 464c3dca3c
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
#ifndef SOLARIS
#include <err.h>
#else
#define quad_t uint64_t
#define quad_t int64_t
#endif
#include <errno.h>
#include <regex.h>

View File

@@ -21,7 +21,7 @@
#ifndef SOLARIS
#include <err.h>
#else
#define quad_t uint64_t
#define quad_t int64_t
#endif
#include <errno.h>
#include <regex.h>