25 lines
520 B
Plaintext
25 lines
520 B
Plaintext
$NetBSD: patch-src_search_c,v 1.2 2013/04/21 15:40:00 joerg Exp $
|
|
|
|
- use standard headers
|
|
|
|
--- src/regex19.c.orig 1996-07-16 01:44:24.000000000 +0000
|
|
+++ src/regex19.c
|
|
@@ -25,6 +25,8 @@
|
|
#pragma alloca
|
|
#endif
|
|
|
|
+#include <stdlib.h>
|
|
+
|
|
#define _GNU_SOURCE
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
@@ -3455,7 +3457,7 @@ re_compile_fastmap (bufp)
|
|
case categoryspec:
|
|
case notcategoryspec:
|
|
bufp->can_be_null = 1;
|
|
- return;
|
|
+ return 0;
|
|
#endif /* MULE */
|
|
|
|
/* All cases after this match the empty string. These end with
|