aboutsummaryrefslogtreecommitdiff
path: root/loadlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-02-16 11:14:33 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-02-16 11:14:33 -0200
commit374f6c461240d8896ed3d9c73bad3873bba580ae (patch)
tree1fbba312c8f497bf146f6e20ad126c7e4aee1d74 /loadlib.c
parent4bdf9962bfd413077d979af4ddc406e7fcd4bbd6 (diff)
downloadlua-374f6c461240d8896ed3d9c73bad3873bba580ae.tar.gz
lua-374f6c461240d8896ed3d9c73bad3873bba580ae.tar.bz2
lua-374f6c461240d8896ed3d9c73bad3873bba580ae.zip
detail ('fopen' needs 'stdio.h')
Diffstat (limited to 'loadlib.c')
-rw-r--r--loadlib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/loadlib.c b/loadlib.c
index 79d3e452..ed2adb5c 100644
--- a/loadlib.c
+++ b/loadlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: loadlib.c,v 1.124 2015/01/05 13:51:39 roberto Exp roberto $ 2** $Id: loadlib.c,v 1.125 2015/01/13 13:18:04 roberto Exp roberto $
3** Dynamic library loader for Lua 3** Dynamic library loader for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5** 5**
@@ -14,6 +14,7 @@
14#include "lprefix.h" 14#include "lprefix.h"
15 15
16 16
17#include <stdio.h>
17#include <stdlib.h> 18#include <stdlib.h>
18#include <string.h> 19#include <string.h>
19 20