From 97157ca5a0d8e676d78dae4784f1f04accd3e0a5 Mon Sep 17 00:00:00 2001 From: simonmar Date: Sat, 16 Feb 2002 18:04:28 +0000 Subject: [PATCH] [project @ 2002-02-16 18:04:28 by simonmar] Must #include before regex.h --- Text/Regex/Posix.hsc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Text/Regex/Posix.hsc b/Text/Regex/Posix.hsc index 8df4331..64275c6 100644 --- a/Text/Regex/Posix.hsc +++ b/Text/Regex/Posix.hsc @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable (only on platforms that provide POSIX regexps) -- --- $Id: Posix.hsc,v 1.5 2002/02/14 14:08:50 simonmar Exp $ +-- $Id: Posix.hsc,v 1.6 2002/02/16 18:04:28 simonmar Exp $ -- -- Interface to the POSIX regular expression library. -- ToDo: should have an interface using PackedStrings. @@ -32,6 +32,7 @@ module Text.Regex.Posix ( regNewline -- (flag to regcomp) '.' doesn't match newline ) where +#include #include "regex.h" import Prelude -- 1.7.10.4