diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-02-05 15:15:33 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-02-05 15:15:33 -0200 |
commit | c8d6cb01365780367f949a94b29bb3f043744c0e (patch) | |
tree | 7a70fb480a12b656771efcea82ea07ac9c863d3a /lvm.c | |
parent | 0edcdf49c00b70986f3efc12ceae912db2361d67 (diff) | |
download | lua-c8d6cb01365780367f949a94b29bb3f043744c0e.tar.gz lua-c8d6cb01365780367f949a94b29bb3f043744c0e.tar.bz2 lua-c8d6cb01365780367f949a94b29bb3f043744c0e.zip |
macros 'luai_num*' (for float arithmetic operations) moved to
llimits.h.
Diffstat (limited to '')
-rw-r--r-- | lvm.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.c,v 2.232 2014/12/27 20:30:38 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 2.233 2015/01/16 16:54:37 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -11,6 +11,7 @@ | |||
11 | 11 | ||
12 | 12 | ||
13 | #include <limits.h> | 13 | #include <limits.h> |
14 | #include <math.h> | ||
14 | #include <stdio.h> | 15 | #include <stdio.h> |
15 | #include <stdlib.h> | 16 | #include <stdlib.h> |
16 | #include <string.h> | 17 | #include <string.h> |