diff options
author | ache <ache@FreeBSD.org> | 1997-10-29 16:27:56 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-10-29 16:27:56 +0000 |
commit | 692df03d54538d242b178d68845a77f1cab05abc (patch) | |
tree | 59c2703410b9a7afc51b2aa1fd8bda44e52d122a /contrib/diff | |
parent | 8dcc9192ee57b6213fd5ee5dd9328e723c9a01dc (diff) | |
download | FreeBSD-src-692df03d54538d242b178d68845a77f1cab05abc.zip FreeBSD-src-692df03d54538d242b178d68845a77f1cab05abc.tar.gz |
Include <gnuregex.h> for FreeBSD
Diffstat (limited to 'contrib/diff')
-rw-r--r-- | contrib/diff/diff.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/diff/diff.h b/contrib/diff/diff.h index 66c6940..24f0885 100644 --- a/contrib/diff/diff.h +++ b/contrib/diff/diff.h @@ -19,7 +19,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "system.h" #include <stdio.h> +#ifdef __FreeBSD__ +#include <gnuregex.h> +#else #include "regex.h" +#endif #define TAB_WIDTH 8 |