mirror of
https://github.com/Interlisp/maiko.git
synced 2026-04-15 23:51:44 +00:00
Add missing foreigndefs.h, includes to foreign.c. (#214)
This commit is contained in:
18
inc/foreigndefs.h
Normal file
18
inc/foreigndefs.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef FOREIGNDEFS_H
|
||||
#define FOREIGNDEFS_H 1
|
||||
|
||||
LispPTR call_c_fn(LispPTR *args);
|
||||
LispPTR smashing_c_fn(LispPTR *args);
|
||||
int Mdld_link(LispPTR *args);
|
||||
int Mdld_unlink_by_file(LispPTR *args);
|
||||
int Mdld_unlink_by_symbol(LispPTR *args);
|
||||
unsigned long Mdld_get_symbol(LispPTR *args);
|
||||
unsigned long Mdld_get_func(LispPTR *args);
|
||||
int Mdld_function_executable_p(LispPTR *args);
|
||||
int Mdld_list_undefined_sym(void);
|
||||
int c_malloc(LispPTR *args);
|
||||
int c_free(LispPTR *args);
|
||||
int put_c_basebyte(LispPTR *args);
|
||||
int get_c_basebyte(LispPTR *args);
|
||||
|
||||
#endif /* FOREIGNDEFS_H */
|
||||
Reference in New Issue
Block a user