blob: 6fbdc345608ec4616b7857993aa6da7a409e8986 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef COMPAT_DARWIN_H
#define COMPAT_DARWIN_H
int darwin_regexec_buf(const regex_t *preg, const char *buf, size_t size,
size_t nmatch, regmatch_t pmatch[], int eflags);
#define regexec_buf darwin_regexec_buf
#endif
|