From: Gerd Moellmann Date: Wed, 28 Feb 2001 13:27:04 +0000 (+0000) Subject: (allocate_vectorlike): Remove prototype. X-Git-Tag: emacs-pretest-21.0.99~90 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=42cc5ba46326b2462a1ed42df41e8dcd96ee2c77;p=emacs.git (allocate_vectorlike): Remove prototype. (allocate_vector, allocate_other_vector, allocate_frame) (allocate_window, allocate_process, allocate_hash_table): Add prototypes. --- diff --git a/src/lisp.h b/src/lisp.h index 966e3b929d8..7bfcd718c33 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2219,7 +2219,12 @@ EXFUN (Fmake_bool_vector, 2); 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));