Git fork
at reftables-rust 9 lines 213 B view raw
1#include "../git-compat-util.h" 2#undef regcomp 3 4int git_regcomp(regex_t *preg, const char *pattern, int cflags) 5{ 6 if (!(cflags & REG_EXTENDED)) 7 cflags |= REG_ENHANCED; 8 return regcomp(preg, pattern, cflags); 9}