diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-02-06 17:35:09 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-02-06 17:35:09 -0200 |
commit | 7c342c488e8325af6a5f5a466df6dcbf3b563260 (patch) | |
tree | d24ff38f44dbc248961d6ecb4bd30d71b9873935 | |
parent | b36cd823b1191d22f42edb70fdf846c78f2c956e (diff) | |
download | lua-7c342c488e8325af6a5f5a466df6dcbf3b563260.tar.gz lua-7c342c488e8325af6a5f5a466df6dcbf3b563260.tar.bz2 lua-7c342c488e8325af6a5f5a466df6dcbf3b563260.zip |
header "stdlib.h" was missing (gcc does not warn that)
-rw-r--r-- | opcode.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,9 +3,10 @@ | |||
3 | ** TecCGraf - PUC-Rio | 3 | ** TecCGraf - PUC-Rio |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_opcode="$Id: opcode.c,v 3.32 1995/01/27 17:19:06 celes Exp roberto $"; | 6 | char *rcs_opcode="$Id: opcode.c,v 3.33 1995/02/02 20:05:37 roberto Exp roberto $"; |
7 | 7 | ||
8 | #include <setjmp.h> | 8 | #include <setjmp.h> |
9 | #include <stdlib.h> | ||
9 | #include <stdio.h> | 10 | #include <stdio.h> |
10 | #include <string.h> | 11 | #include <string.h> |
11 | #include <math.h> | 12 | #include <math.h> |