1
0
mirror of https://github.com/brouhaha/tapeutils.git synced 2026-01-11 23:53:18 +00:00

Make it compile with Cygwin

This commit is contained in:
jfcl 2022-04-03 19:37:41 -07:00 committed by Lars Brinkhoff
parent 56d22663af
commit 6bcd82d350

View File

@ -86,7 +86,7 @@ char *expression = 0;
char *re_comp_error; /* Error message from re_comp() */
extern char *re_comp();
#if defined(__APPLE__) || defined(__OpenBSD__)
#if defined(__APPLE__) || defined(__OpenBSD__) || defined(__CYGWIN__)
static regex_t re_regexp;
char *re_comp(char *s)