Define LLONG_MAX on systems that do not have it.

(closes issue #17644)
 Reported by: pprindeville


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@276769 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2010-07-15 19:46:57 +00:00
parent e2ff55122d
commit 753fa3b278
4 changed files with 71 additions and 1 deletions

View File

@@ -73,6 +73,10 @@
#include "asterisk/poll-compat.h"
#endif
#ifndef HAVE_LLONG_MAX
#define LLONG_MAX 9223372036854775807LL
#endif
#ifndef HAVE_CLOSEFROM
void closefrom(int lowfd);
#endif