aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-01-05 11:48:33 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-01-05 11:48:33 -0200
commit3317f5c6d9f3c8370430bb8b412b7f7a65b797b2 (patch)
treebe94c4a4d7ab5179cb2a796a286008d9dab3053d /lopcodes.c
parentdbf911c516acc51770f99f362e59cd32b621b3b8 (diff)
downloadlua-3317f5c6d9f3c8370430bb8b412b7f7a65b797b2.tar.gz
lua-3317f5c6d9f3c8370430bb8b412b7f7a65b797b2.tar.bz2
lua-3317f5c6d9f3c8370430bb8b412b7f7a65b797b2.zip
includes 'stddef.h' (as it uses NULL)
Diffstat (limited to 'lopcodes.c')
-rw-r--r--lopcodes.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lopcodes.c b/lopcodes.c
index bfc3d5fc..10d4bbce 100644
--- a/lopcodes.c
+++ b/lopcodes.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.c,v 1.53 2013/12/30 20:47:58 roberto Exp roberto $ 2** $Id: lopcodes.c,v 1.54 2014/11/02 19:19:04 roberto Exp roberto $
3** Opcodes for Lua virtual machine 3** Opcodes for Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -10,6 +10,8 @@
10#include "lprefix.h" 10#include "lprefix.h"
11 11
12 12
13#include <stddef.h>
14
13#include "lopcodes.h" 15#include "lopcodes.h"
14 16
15 17