From: Andrea Corallo Date: Fri, 20 Dec 2019 04:23:02 +0000 (+0100) Subject: make dynlib_close active code X-Git-Tag: emacs-28.0.90~2727^2~907 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f0671c60637e218a54f9f3ac8e5950d17884f50b;p=emacs.git make dynlib_close active code --- diff --git a/src/dynlib.c b/src/dynlib.c index 4919d5cc726..b3fd815e68c 100644 --- a/src/dynlib.c +++ b/src/dynlib.c @@ -301,15 +301,11 @@ dynlib_error (void) return dlerror (); } -/* FIXME: Currently there is no way to unload a module, so this - function is never used. */ -#if false int dynlib_close (dynlib_handle_ptr h) { return dlclose (h) == 0; } -#endif #else