diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2005-11-02 14:51:04 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2005-11-02 14:51:04 (GMT) |
| commit | 0c3cff65101748d84713ccaff348fefd12eb6eee (patch) | |
| tree | 26e138a11c8ea34a812efae189c0b32260bed314 /generic/regex.h | |
| parent | fd90f12fd4aeb331260c5f5d6d39789dbf8a76cb (diff) | |
| download | tcl-0c3cff65101748d84713ccaff348fefd12eb6eee.zip tcl-0c3cff65101748d84713ccaff348fefd12eb6eee.tar.gz tcl-0c3cff65101748d84713ccaff348fefd12eb6eee.tar.bz2 | |
ANSIfy; generic/*.c now all done except for test code
Diffstat (limited to 'generic/regex.h')
| -rw-r--r-- | generic/regex.h | 16 |
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 =====^!^===== */ |
