aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-09-16 20:20:01 +0000
committerGerd Moellmann1999-09-16 20:20:01 +0000
commit15b0ced5c270350656a78f16b5c65348b0aa8956 (patch)
tree66949f46970dbd1f7e86bbbb453590e683d0cb4a /src
parente39adcdab9eb38a71322734425db39568852ca9b (diff)
downloademacs-15b0ced5c270350656a78f16b5c65348b0aa8956.tar.gz
emacs-15b0ced5c270350656a78f16b5c65348b0aa8956.zip
Add prototype for uninterrupt_malloc, memory_warnings,
init_fileio_once, syms_of_sound, init_xfns, init_fns init_sound, check_message_stack.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h
index e13a55cddb6..e6b79c7477f 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1806,6 +1806,7 @@ void hash_put P_ ((struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object,
1806void hash_remove P_ ((struct Lisp_Hash_Table *, Lisp_Object)); 1806void hash_remove P_ ((struct Lisp_Hash_Table *, Lisp_Object));
1807void hash_clear P_ ((struct Lisp_Hash_Table *)); 1807void hash_clear P_ ((struct Lisp_Hash_Table *));
1808void remove_hash_entry P_ ((struct Lisp_Hash_Table *, int)); 1808void remove_hash_entry P_ ((struct Lisp_Hash_Table *, int));
1809extern void init_fns P_ ((void));
1809EXFUN (Fsxhash, 1); 1810EXFUN (Fsxhash, 1);
1810EXFUN (Fmake_hash_table, MANY); 1811EXFUN (Fmake_hash_table, MANY);
1811EXFUN (Fcopy_hash_table, 1); 1812EXFUN (Fcopy_hash_table, 1);
@@ -1944,6 +1945,7 @@ extern Lisp_Object Qinhibit_redisplay;
1944extern Lisp_Object Vmessage_log_max; 1945extern Lisp_Object Vmessage_log_max;
1945extern int message_enable_multibyte; 1946extern int message_enable_multibyte;
1946extern Lisp_Object echo_area_buffer[2]; 1947extern Lisp_Object echo_area_buffer[2];
1948extern void check_message_stack P_ ((void));
1947extern void setup_echo_area_for_printing P_ ((int)); 1949extern void setup_echo_area_for_printing P_ ((int));
1948extern int push_message P_ ((void)); 1950extern int push_message P_ ((void));
1949extern void pop_message P_ ((void)); 1951extern void pop_message P_ ((void));
@@ -1972,7 +1974,15 @@ extern void prepare_menu_bars P_ ((void));
1972extern void syms_of_xdisp P_ ((void)); 1974extern void syms_of_xdisp P_ ((void));
1973extern void init_xdisp P_ ((void)); 1975extern void init_xdisp P_ ((void));
1974 1976
1977/* Defined in vm-limit.c. */
1978#ifdef __STDC__
1979extern void memory_warnings P_ ((void *, void (*warnfun) ()));
1980#else
1981extern void memory_warnings P_ ((char *, void (*warnfun) ()));
1982#endif
1983
1975/* Defined in alloc.c */ 1984/* Defined in alloc.c */
1985extern void uninterrupt_malloc P_ ((void));
1976extern void malloc_warning P_ ((char *)); 1986extern void malloc_warning P_ ((char *));
1977extern void memory_full P_ ((void)); 1987extern void memory_full P_ ((void));
1978extern void buffer_memory_full P_ ((void)); 1988extern void buffer_memory_full P_ ((void));
@@ -2282,6 +2292,7 @@ extern Lisp_Object close_file_unwind P_ ((Lisp_Object));
2282extern void report_file_error P_ ((char *, Lisp_Object)); 2292extern void report_file_error P_ ((char *, Lisp_Object));
2283extern int internal_delete_file P_ ((Lisp_Object)); 2293extern int internal_delete_file P_ ((Lisp_Object));
2284extern void syms_of_fileio P_ ((void)); 2294extern void syms_of_fileio P_ ((void));
2295extern void init_fileio_once P_ ((void));
2285 2296
2286/* Defined in abbrev.c */ 2297/* Defined in abbrev.c */
2287 2298
@@ -2612,6 +2623,11 @@ extern void lock_file P_ ((Lisp_Object));
2612extern void unlock_file P_ ((Lisp_Object)); 2623extern void unlock_file P_ ((Lisp_Object));
2613extern void unlock_buffer P_ ((struct buffer *)); 2624extern void unlock_buffer P_ ((struct buffer *));
2614extern void syms_of_filelock P_ ((void)); 2625extern void syms_of_filelock P_ ((void));
2626extern void init_filelock P_ ((void));
2627
2628/* Defined in sound.c */
2629extern void syms_of_sound P_ ((void));
2630extern void init_sound P_ ((void));
2615 2631
2616/* Defined in category.c */ 2632/* Defined in category.c */
2617extern void init_category_once P_ ((void)); 2633extern void init_category_once P_ ((void));
@@ -2646,6 +2662,7 @@ extern int getloadavg P_ ((double *, int));
2646/* Defined in xfns.c */ 2662/* Defined in xfns.c */
2647extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); 2663extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
2648extern void syms_of_xfns P_ ((void)); 2664extern void syms_of_xfns P_ ((void));
2665extern void init_xfns P_ ((void));
2649#endif 2666#endif
2650 2667
2651/* Defined in xselect.c */ 2668/* Defined in xselect.c */