[project @ 2002-04-26 13:34:05 by simonmar]
[ghc-base.git] / Text / Regex / Posix.hsc
index 8df4331..8c84dbd 100644 (file)
@@ -1,5 +1,5 @@
 -----------------------------------------------------------------------------
--- 
+-- |
 -- Module      :  Text.Regex.Posix
 -- Copyright   :  (c) The University of Glasgow 2001
 -- License     :  BSD-style (see the file libraries/core/LICENSE)
@@ -8,8 +8,6 @@
 -- 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 $
---
 -- Interface to the POSIX regular expression library.
 -- ToDo: should have an interface using PackedStrings.
 --
@@ -32,6 +30,7 @@ module Text.Regex.Posix (
        regNewline      -- (flag to regcomp) '.' doesn't match newline
   ) where
 
+#include <sys/types.h>
 #include "regex.h"
 
 import Prelude