# HG changeset patch # User Gerd Moellmann # Date 983366824 0 # Node ID 5b0805c237e187b67857444c8ed7bba6276fbf89 # Parent 1610938fcd8bee0511a06fa7e2fcd80b790bd6bf (allocate_vectorlike): Remove prototype. (allocate_vector, allocate_other_vector, allocate_frame) (allocate_window, allocate_process, allocate_hash_table): Add prototypes. diff -r 1610938fcd8b -r 5b0805c237e1 src/lisp.h --- a/src/lisp.h Wed Feb 28 12:42:21 2001 +0000 +++ b/src/lisp.h Wed Feb 28 13:27:04 2001 +0000 @@ -2219,7 +2219,12 @@ EXFUN (Fmake_char_table, 2); extern Lisp_Object make_sub_char_table P_ ((Lisp_Object)); extern Lisp_Object Qchar_table_extra_slots; -extern struct Lisp_Vector *allocate_vectorlike P_ ((EMACS_INT)); +extern struct Lisp_Vector *allocate_vector P_ ((EMACS_INT)); +extern struct Lisp_Vector *allocate_other_vector P_ ((EMACS_INT)); +extern struct Lisp_Hash_Table *allocate_hash_table P_ ((void)); +extern struct window *allocate_window P_ ((void)); +extern struct frame *allocate_frame P_ ((void)); +extern struct Lisp_Process *allocate_process P_ ((void)); extern int gc_in_progress; extern Lisp_Object make_float P_ ((double)); extern void display_malloc_warning P_ ((void));