changeset 36430:5b0805c237e1

(allocate_vectorlike): Remove prototype. (allocate_vector, allocate_other_vector, allocate_frame) (allocate_window, allocate_process, allocate_hash_table): Add prototypes.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 28 Feb 2001 13:27:04 +0000
parents 1610938fcd8b
children c10e67afd7ec
files src/lisp.h
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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));