aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorGerd Moellmann1999-09-19 21:46:45 +0000
committerGerd Moellmann1999-09-19 21:46:45 +0000
commit6bfc58e91e3a54e1c3e02602e3a75af12a0eed56 (patch)
treec50f79cb3a9c1de6eaef76ccb0474ff3bcc9949d /src/buffer.h
parent96c5b0a7f97f0f25e6779ae1edd2410f5214df75 (diff)
downloademacs-6bfc58e91e3a54e1c3e02602e3a75af12a0eed56.tar.gz
emacs-6bfc58e91e3a54e1c3e02602e3a75af12a0eed56.zip
Add prototype for r_re_alloc.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 1323541c537..655c68e5671 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -851,6 +851,7 @@ extern Lisp_Object Vtransient_mark_mode;
851 851
852extern char *r_alloc P_ ((char **, unsigned long)); 852extern char *r_alloc P_ ((char **, unsigned long));
853extern void r_alloc_free P_ ((char **ptr)); 853extern void r_alloc_free P_ ((char **ptr));
854extern char *r_re_alloc P_ ((char **, unsigned long));
854 855
855#define BUFFER_ALLOC(data,size) \ 856#define BUFFER_ALLOC(data,size) \
856 ((unsigned char *) r_alloc ((char **)&data, (size))) 857 ((unsigned char *) r_alloc ((char **)&data, (size)))