aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index ddf903e5469..6e3f7a8ee23 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -378,6 +378,12 @@ whatever you like. */
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. */
382extern struct re_pattern_buffer searchbuf; 388extern struct re_pattern_buffer searchbuf;
383 389