diff options
author | Gisle Aas <gisle@aas.no> | 1998-03-02 14:00:45 +0100 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-03-05 19:02:50 +0000 |
commit | d6582e46845f6c37893e96dbdd201cd0601d3550 (patch) | |
tree | c9d944afd23bd078e038189b6e55cba307f207bc /regcomp.c | |
parent | f7d144c835d02593edb2388cf7cb0c7395c53ae2 (diff) | |
download | perl-d6582e46845f6c37893e96dbdd201cd0601d3550.tar.gz |
External symbol re_croak2
p4raw-id: //depot/perl@780
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -131,6 +131,7 @@ static void regset _((char *, I32)); static void regtail _((regnode *, regnode *)); static char* regwhite _((char *, char *)); static char* nextchar _((void)); +static void re_croak2 _((const char* pat1,const char* pat2,...)) __attribute__((noreturn)); static U32 regseen; static I32 seen_zerolen; @@ -2621,11 +2622,11 @@ regnext(register regnode *p) } #ifdef I_STDARG -void +static void re_croak2(const char* pat1,const char* pat2,...) #else /*VARARGS0*/ -void +static void re_croak2(const char* pat1,const char* pat2, va_alist) const char* pat1; const char* pat2; |