fixes for win64 compilation.

This commit is contained in:
Vitor Santos Costa
2014-09-16 19:15:56 +01:00
parent 0ad92137a9
commit 8461026303
15 changed files with 122 additions and 90 deletions

View File

@@ -93,9 +93,9 @@ typedef struct {
#define REG_LARGE 01000 /* force large representation */
#define REG_BACKR 02000 /* force use of backref code */
int PROTO(yap_regcomp, (regex_t *, const char *, int));
size_t PROTO(yap_regerror, (int, const regex_t *, char *, size_t));
int PROTO(yap_regexec, (const regex_t *, const char *, size_t, regmatch_t [], int));
void PROTO(yap_regfree, (regex_t *));
int yap_regcomp(regex_t *, const char *, int);
size_t yap_regerror(int, const regex_t *, char *, size_t);
int yap_regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
void yap_regfree(regex_t *);
#endif /* !_REGEX_H_ */