summaryrefslogtreecommitdiffstats
path: root/generic/regex.h
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2005-11-02 14:51:04 (GMT)
committerdkf <dkf@noemail.net>2005-11-02 14:51:04 (GMT)
commite0afc2a220be80cfe623d7765863db66c68ee555 (patch)
tree26e138a11c8ea34a812efae189c0b32260bed314 /generic/regex.h
parentbcd25af33c107196c7e4e32ea219fbb16d0fbf65 (diff)
downloadtcl-e0afc2a220be80cfe623d7765863db66c68ee555.zip
tcl-e0afc2a220be80cfe623d7765863db66c68ee555.tar.gz
tcl-e0afc2a220be80cfe623d7765863db66c68ee555.tar.bz2
ANSIfy; generic/*.c now all done except for test code
FossilOrigin-Name: 2ffae9b1718dd09c7d22c04da2b548d1b7b63c8c
Diffstat (limited to 'generic/regex.h')
-rw-r--r--generic/regex.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/generic/regex.h b/generic/regex.h
index 8289a50..bb1080a 100644
--- a/generic/regex.h
+++ b/generic/regex.h
@@ -305,25 +305,25 @@ typedef struct {
/* automatically gathered by fwd; do not hand-edit */
/* === regproto.h === */
#ifndef __REG_NOCHAR
-int re_comp _ANSI_ARGS_((regex_t *, __REG_CONST char *, size_t, int));
+int re_comp(regex_t *, __REG_CONST char *, size_t, int);
#endif
#ifndef __REG_NOFRONT
-int regcomp _ANSI_ARGS_((regex_t *, __REG_CONST char *, int));
+int regcomp(regex_t *, __REG_CONST char *, int);
#endif
#ifdef __REG_WIDE_T
-int __REG_WIDE_COMPILE _ANSI_ARGS_((regex_t *, __REG_CONST __REG_WIDE_T *, size_t, int));
+int __REG_WIDE_COMPILE(regex_t *, __REG_CONST __REG_WIDE_T *, size_t, int);
#endif
#ifndef __REG_NOCHAR
-int re_exec _ANSI_ARGS_((regex_t *, __REG_CONST char *, size_t, rm_detail_t *, size_t, regmatch_t [], int));
+int re_exec(regex_t *, __REG_CONST char *, size_t, rm_detail_t *, size_t, regmatch_t [], int);
#endif
#ifndef __REG_NOFRONT
-int regexec _ANSI_ARGS_((regex_t *, __REG_CONST char *, size_t, regmatch_t [], int));
+int regexec(regex_t *, __REG_CONST char *, size_t, regmatch_t [], int);
#endif
#ifdef __REG_WIDE_T
-int __REG_WIDE_EXEC _ANSI_ARGS_((regex_t *, __REG_CONST __REG_WIDE_T *, size_t, rm_detail_t *, size_t, regmatch_t [], int));
+int __REG_WIDE_EXEC(regex_t *, __REG_CONST __REG_WIDE_T *, size_t, rm_detail_t *, size_t, regmatch_t [], int);
#endif
-re_void regfree _ANSI_ARGS_((regex_t *));
-extern size_t regerror _ANSI_ARGS_((int, __REG_CONST regex_t *, char *, size_t));
+re_void regfree(regex_t *);
+extern size_t regerror(int, __REG_CONST regex_t *, char *, size_t);
/* automatically gathered by fwd; do not hand-edit */
/* =====^!^===== end forwards =====^!^===== */