summaryrefslogtreecommitdiff
path: root/src/comp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/comp.h')
-rw-r--r--src/comp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/comp.h b/src/comp.h
index 36ee5d10e45..c4849ba13d1 100644
--- a/src/comp.h
+++ b/src/comp.h
@@ -30,8 +30,6 @@ struct Lisp_Native_Comp_Unit
Lisp_Object file;
/* Analogous to the constant vector but per compilation unit. */
Lisp_Object data_vec;
- /* Compilation unit file descriptor and handle. */
- int fd;
dynlib_handle_ptr handle;
};
@@ -49,8 +47,12 @@ XNATIVE_COMP_UNIT (Lisp_Object a)
}
/* Defined in comp.c. */
+extern void load_comp_unit (struct Lisp_Native_Comp_Unit *);
extern void syms_of_comp (void);
+/* Fill the freloc structure. Must be called before any eln is loaded. */
extern void fill_freloc (void);
+/* Return 1 if freloc is filled or 0 otherwise. */
+extern int filled_freloc (void);
#endif
#endif