summaryrefslogtreecommitdiff
path: root/src/dynlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dynlib.h')
-rw-r--r--src/dynlib.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dynlib.h b/src/dynlib.h
index c7c56007134..03b8f983564 100644
--- a/src/dynlib.h
+++ b/src/dynlib.h
@@ -20,10 +20,12 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#ifndef DYNLIB_H
#define DYNLIB_H
+#include <attribute.h>
#include <stdbool.h>
typedef void *dynlib_handle_ptr;
dynlib_handle_ptr dynlib_open (const char *path);
+dynlib_handle_ptr dynlib_open_for_eln (const char *path);
int dynlib_close (dynlib_handle_ptr h);
const char *dynlib_error (void);