From: simonmar Date: Sat, 16 Feb 2002 18:04:28 +0000 (+0000) Subject: [project @ 2002-02-16 18:04:28 by simonmar] X-Git-Tag: nhc98-1-18-release~1103 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=97157ca5a0d8e676d78dae4784f1f04accd3e0a5;p=haskell-directory.git [project @ 2002-02-16 18:04:28 by simonmar] Must #include before regex.h --- 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