comparison src/buffer.h @ 1596:0e105bd23f44

* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c: Added VMS changes from Roland Roberts.
author Jim Blandy <jimb@redhat.com>
date Mon, 16 Nov 1992 00:54:53 +0000
parents fa4c1f1c744d
children 04fb1d3d6992
comparison
equal deleted inserted replaced
1595:ac1be1d32868 1596:0e105bd23f44
376 #define BUFFER_REALLOC(data,size) ((unsigned char *) realloc ((data), (size))) 376 #define BUFFER_REALLOC(data,size) ((unsigned char *) realloc ((data), (size)))
377 #define BUFFER_FREE(data) (free ((data))) 377 #define BUFFER_FREE(data) (free ((data)))
378 #define R_ALLOC_DECLARE(var,data) 378 #define R_ALLOC_DECLARE(var,data)
379 #endif 379 #endif
380 380
381 /* VAX C is non-ANSI wrt extern declarations and requires the struct
382 re_pattern_buffer to completely defined for searchbuf's declaration. */
383 #ifdef VMS
384 #include "regex.h"
385 #endif /* VMS */
386
381 /* A search buffer, with a fastmap allocated and ready to go. */ 387 /* A search buffer, with a fastmap allocated and ready to go. */
382 extern struct re_pattern_buffer searchbuf; 388 extern struct re_pattern_buffer searchbuf;
383 389
384 extern Lisp_Object Fbuffer_name (); 390 extern Lisp_Object Fbuffer_name ();
385 extern Lisp_Object Fget_file_buffer (); 391 extern Lisp_Object Fget_file_buffer ();