mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
Allow "REMAINDER" to function properly in expressions.
(closes issue #16427) Reported by: wdoekes Patches: ast16-reminder-remainder.patch uploaded by wdoekes (license 717) Tested by: wdoekes git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@236713 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -106,10 +106,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
#define FUNC_LOG (long double)log
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_REMINDERL
|
||||
#define FUNC_REMINDER reminderl
|
||||
#elif defined(HAVE_REMINDER)
|
||||
#define FUNC_REMINDER (long double)reminder
|
||||
#ifdef HAVE_REMAINDERL
|
||||
#define FUNC_REMAINDER remainderl
|
||||
#elif defined(HAVE_REMAINDER)
|
||||
#define FUNC_REMAINDER (long double)remainder
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_FMODL
|
||||
|
Reference in New Issue
Block a user