commit 05d35d8f3cdd54399afdbfc6a6d009196d81e51d
parent 3a6230ef7c92473db9f2170b72294a8bcdb294e6
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Wed, 2 Apr 2003 10:08:52 -0300
comments
Diffstat:
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/loadlib.c b/loadlib.c
@@ -1,6 +1,6 @@
/*
-** $Id: loadlib.c,v 1.1 2003/03/17 13:01:48 roberto Exp roberto $
-** Bare-bones dynamic library loader for Lua
+** $Id: loadlib.c,v 1.2 2003/03/18 12:25:01 roberto Exp roberto $
+** Dynamic library loader for Lua
** See Copyright Notice in lua.h
*
* This Lua library exports a single function, called loadlib, which is
@@ -18,12 +18,6 @@
* making decisions without having to look into the first string (whose
* format is system-dependent).
*
-* This bare-bones loadlib function is supposed to be used as a foundation
-* for more sophisticated dynamic library loaders, possibly still called
-* loadlib and probably written in Lua, that will be smart enough to try to
-* find the library in different directories and also perhaps guess the name
-* of the init function.
-*
* This module contains an implementation of loadlib for Unix systems that
* have dlfcn, an implementation for Windows, and a stub for other systems.
* See the list at the end of this file for some links to available