aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llimits.h b/llimits.h
index c88fd06f..348cd9a1 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.129 2015/01/16 17:15:52 roberto Exp roberto $ 2** $Id: llimits.h,v 1.130 2015/02/05 17:15:33 roberto Exp roberto $
3** Limits, basic types, and some other 'installation-dependent' definitions 3** Limits, basic types, and some other 'installation-dependent' definitions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -248,7 +248,7 @@ typedef unsigned long Instruction;
248 248
249/* floor division (defined as 'floor(a/b)') */ 249/* floor division (defined as 'floor(a/b)') */
250#if !defined(luai_numidiv) 250#if !defined(luai_numidiv)
251#define luai_numidiv(L,a,b) ((void)L, l_mathop(floor)(luai_numdiv(L,a,b))) 251#define luai_numidiv(L,a,b) ((void)L, l_floor(luai_numdiv(L,a,b)))
252#endif 252#endif
253 253
254/* float division */ 254/* float division */