From 05d35d8f3cdd54399afdbfc6a6d009196d81e51d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 2 Apr 2003 10:09:14 -0300 Subject: [PATCH] comments --- loadlib.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/loadlib.c b/loadlib.c index c4b4b7fa..5dcc4ccd 100644 --- 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