3 require 5.003; # keep this compatible, an old perl is all we may have before
9 # Get function prototypes
10 require 'regen_lib.pl';
13 my $SPLINT = 0; # Turn true for experimental splint support http://www.splint.org
16 # See database of global and static function prototypes in embed.fnc
17 # This is used to generate prototype headers under various configurations,
18 # export symbols lists for different platforms, and macros to provide an
19 # implicit interpreter context argument.
26 my $years = '1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009';
28 $years =~ s/1999,/1999,\n / if length $years > 40;
31 -*- buffer-read-only: t -*-
35 Copyright (C) $years, by Larry Wall and others
37 You may distribute under the terms of either the GNU General Public
38 License or the Artistic License, as specified in the README file.
40 !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
41 This file is built by embed.pl from data in embed.fnc, embed.pl,
42 pp.sym, intrpvar.h, and perlvars.h.
43 Any changes made here will be lost!
45 Edit those files and run 'make regen_headers' to effect changes.
49 $warning .= <<EOW if $file eq 'perlapi.c';
51 Up to the threshold of the door there mounted a flight of twenty-seven
52 broad stairs, hewn by some unknown art of the same black stone. This
53 was the only entrance to the tower; ...
55 [p.577 of _The Lord of the Rings_, III/x: "The Voice of Saruman"]
60 if ($file =~ m:\.[ch]$:) {
61 $warning =~ s:^: * :gm;
62 $warning =~ s: +$::gm;
67 $warning =~ s:^:# :gm;
68 $warning =~ s: +$::gm;
73 open IN, "embed.fnc" or die $!;
75 # walk table providing an array of components in each line to
76 # subroutine, printing the result
79 my $filename = shift || '-';
81 defined $leader or $leader = do_not_edit ($filename);
84 if (ref $filename) { # filehandle
88 # safer_unlink $filename if $filename ne '/dev/null';
89 $F = safer_open("$filename-new");
91 print $F $leader if $leader;
92 seek IN, 0, 0; # so we may restart
106 @args = split /\s*\|\s*/, $_;
108 my @outs = &{$function}(@args);
109 print $F @outs; # $function->(@args) is not 5.003
111 print $F $trailer if $trailer;
112 unless (ref $filename) {
114 rename_if_different("$filename-new", $filename);
118 sub munge_c_files () {
121 warn "\@ARGV empty, nothing to do\n";
126 $functions->{$_[2]} = \@_ if $_[@_-1] =~ /\.\.\./;
128 } '/dev/null', '', '';
131 s{(\b(\w+)[ \t]*\([ \t]*(?!aTHX))}
135 if (exists $functions->{$f}) {
137 warn("$ARGV:$.:$`#$repl#$'");
142 close ARGV if eof; # restart $.
150 my $wrote_protected = 0;
159 my ($flags,$retval,$plain_func,@args) = @_;
161 my $has_context = ( $flags !~ /n/ );
162 my $never_returns = ( $flags =~ /r/ );
163 my $commented_out = ( $flags =~ /m/ );
164 my $binarycompat = ( $flags =~ /b/ );
165 my $is_malloc = ( $flags =~ /a/ );
166 my $can_ignore = ( $flags !~ /R/ ) && !$is_malloc;
170 my $splint_flags = "";
171 if ( $SPLINT && !$commented_out ) {
172 $splint_flags .= '/*@noreturn@*/ ' if $never_returns;
173 if ($can_ignore && ($retval ne 'void') && ($retval !~ /\*/)) {
174 $retval .= " /*\@alt void\@*/";
179 $retval = "STATIC $splint_flags$retval";
180 $func = "S_$plain_func";
183 $retval = "PERL_CALLCONV $splint_flags$retval";
184 if ($flags =~ /[bp]/) {
185 $func = "Perl_$plain_func";
190 $ret .= "$retval\t$func(";
191 if ( $has_context ) {
192 $ret .= @args ? "pTHX_ " : "pTHX";
196 for my $arg ( @args ) {
198 if ( $arg =~ /\*/ && $arg !~ /\b(NN|NULLOK)\b/ ) {
199 warn "$func: $arg needs NN or NULLOK\n";
200 our $unflagged_pointers;
201 ++$unflagged_pointers;
203 my $nn = ( $arg =~ s/\s*\bNN\b\s+// );
204 push( @nonnull, $n ) if $nn;
206 my $nullok = ( $arg =~ s/\s*\bNULLOK\b\s+// ); # strip NULLOK with no effect
208 # Make sure each arg has at least a type and a var name.
209 # An arg of "int" is valid C, but want it to be "int foo".
211 $temp_arg =~ s/\*//g;
212 $temp_arg =~ s/\s*\bstruct\b\s*/ /g;
213 if ( ($temp_arg ne "...")
214 && ($temp_arg !~ /\w+\s+(\w+)(?:\[\d+\])?\s*$/) ) {
215 warn "$func: $arg ($n) doesn't have a name\n";
217 if ( $SPLINT && $nullok && !$commented_out ) {
218 $arg = '/*@null@*/ ' . $arg;
220 if (defined $1 && $nn && !($commented_out && !$binarycompat)) {
221 push @names_of_nn, $1;
224 $ret .= join ", ", @args;
227 $ret .= "void" if !$has_context;
231 if ( $flags =~ /r/ ) {
232 push @attrs, "__attribute__noreturn__";
235 push @attrs, "__attribute__malloc__";
237 if ( !$can_ignore ) {
238 push @attrs, "__attribute__warn_unused_result__";
240 if ( $flags =~ /P/ ) {
241 push @attrs, "__attribute__pure__";
243 if( $flags =~ /f/ ) {
244 my $prefix = $has_context ? 'pTHX_' : '';
245 my $args = scalar @args;
247 my $macro = @nonnull && $nonnull[-1] == $pat
248 ? '__attribute__format__'
249 : '__attribute__format__null_ok__';
250 push @attrs, sprintf "%s(__printf__,%s%d,%s%d)", $macro,
251 $prefix, $pat, $prefix, $args;
254 my @pos = map { $has_context ? "pTHX_$_" : $_ } @nonnull;
255 push @attrs, map { sprintf( "__attribute__nonnull__(%s)", $_ ) } @pos;
259 $ret .= join( "\n", map { "\t\t\t$_" } @attrs );
262 $ret = "/* $ret */" if $commented_out;
264 $ret .= "\n#define PERL_ARGS_ASSERT_\U$plain_func\E\t\\\n\t"
265 . join '; ', map "assert($_)", @names_of_nn;
267 $ret .= @attrs ? "\n\n" : "\n";
272 # generates global.sym (API export list)
275 sub write_global_sym {
278 my ($flags,$retval,$func,@args) = @_;
279 # If a function is defined twice, for example before and after an
280 # #else, only process the flags on the first instance for global.sym
281 return $ret if $seen{$func}++;
282 if ($flags =~ /[AX]/ && $flags !~ /[xm]/
283 || $flags =~ /b/) { # public API, so export
284 $func = "Perl_$func" if $flags =~ /[pbX]/;
293 our $unflagged_pointers;
294 walk_table(\&write_protos, "proto.h", undef, "/* ex: set ro: */\n");
295 warn "$unflagged_pointers pointer arguments to clean up\n" if $unflagged_pointers;
296 walk_table(\&write_global_sym, "global.sym", undef, "# ex: set ro:\n");
298 # XXX others that may need adding
302 my @extvars = qw(sv_undef sv_yes sv_no na dowarn
304 tainting tainted stack_base stack_sp sv_arenaroot
306 curstash DBsub DBsingle DBassertion debstash
320 my ($syms, $file) = @_;
322 open(FILE, "< $file")
323 or die "embed.pl: Can't open $file: $!\n";
325 s/[ \t]*#.*//; # Delete comments.
326 if (/^\s*(\S+)\s*$/) {
328 warn "duplicate symbol $sym while processing $file line $.\n"
329 if exists $$syms{$sym};
336 # Perl_pp_* and Perl_ck_* are in pp.sym
337 readsyms my %ppsym, 'pp.sym';
339 sub readvars(\%$$@) {
340 my ($syms, $file,$pre,$keep_pre) = @_;
342 open(FILE, "< $file")
343 or die "embed.pl: Can't open $file: $!\n";
345 s/[ \t]*#.*//; # Delete comments.
346 if (/PERLVARA?I?S?C?\($pre(\w+)/) {
348 $sym = $pre . $sym if $keep_pre;
349 warn "duplicate symbol $sym while processing $file line $.\n"
350 if exists $$syms{$sym};
351 $$syms{$sym} = $pre || 1;
360 readvars %intrp, 'intrpvar.h','I';
361 readvars %globvar, 'perlvars.h','G';
371 my ($from, $to) = @_;
372 my $t = int(length($from) / 8);
373 "#define $from" . "\t" x ($t < 3 ? 3 - $t : 1) . "$to\n";
376 sub bincompat_var ($$) {
377 my ($pfx, $sym) = @_;
378 my $arg = ($pfx eq 'G' ? 'NULL' : 'aTHX');
379 undefine("PL_$sym") . hide("PL_$sym", "(*Perl_${pfx}${sym}_ptr($arg))");
383 my ($sym,$pre,$ptr) = @_;
384 hide("PL_$sym", "($ptr$pre$sym)");
389 return hide("PL_$pre$sym", "PL_$sym");
392 my $em = safer_open('embed.h-new');
394 print $em do_not_edit ("embed.h"), <<'END';
396 /* (Doing namespace management portably in C is really gross.) */
398 /* By defining PERL_NO_SHORT_NAMES (not done by default) the short forms
399 * (like warn instead of Perl_warn) for the API are not defined.
400 * Not defining the short forms is a good thing for cleaner embedding. */
402 #ifndef PERL_NO_SHORT_NAMES
404 /* Hide global symbols */
406 #if !defined(PERL_IMPLICIT_CONTEXT)
410 # Try to elimiate lots of repeated
417 # by tracking state and merging foo and bar into one block.
418 my $ifdef_state = '';
422 my $new_ifdef_state = '';
425 $ret .= "$arg\n" if $arg =~ /^#\s*(if|ifn?def|else|endif)\b/;
428 my ($flags,$retval,$func,@args) = @_;
429 unless ($flags =~ /[om]/) {
431 $ret .= hide($func,"S_$func");
433 elsif ($flags =~ /p/) {
434 $ret .= hide($func,"Perl_$func");
437 if ($ret ne '' && $flags !~ /A/) {
440 = "#if defined(PERL_CORE) || defined(PERL_EXT)\n";
443 $new_ifdef_state = "#ifdef PERL_CORE\n";
446 if ($new_ifdef_state ne $ifdef_state) {
447 $ret = $new_ifdef_state . $ret;
451 if ($ifdef_state && $new_ifdef_state ne $ifdef_state) {
452 # Close the old one ahead of opening the new one.
453 $ret = "#endif\n$ret";
455 # Remember the new state.
456 $ifdef_state = $new_ifdef_state;
461 print $em "#endif\n";
464 for $sym (sort keys %ppsym) {
466 print $em hide($sym, "Perl_$sym");
471 #else /* PERL_IMPLICIT_CONTEXT */
480 my $new_ifdef_state = '';
483 $ret .= "$arg\n" if $arg =~ /^#\s*(if|ifn?def|else|endif)\b/;
486 my ($flags,$retval,$func,@args) = @_;
487 unless ($flags =~ /[om]/) {
488 my $args = scalar @args;
489 if ($args and $args[$args-1] =~ /\.\.\./) {
490 # we're out of luck for varargs functions under CPP
492 elsif ($flags =~ /n/) {
494 $ret .= hide($func,"S_$func");
496 elsif ($flags =~ /p/) {
497 $ret .= hide($func,"Perl_$func");
501 my $alist = join(",", @az[0..$args-1]);
502 $ret = "#define $func($alist)";
503 my $t = int(length($ret) / 8);
504 $ret .= "\t" x ($t < 4 ? 4 - $t : 1);
506 $ret .= "S_$func(aTHX";
508 elsif ($flags =~ /p/) {
509 $ret .= "Perl_$func(aTHX";
511 $ret .= "_ " if $alist;
512 $ret .= $alist . ")\n";
515 unless ($flags =~ /A/) {
518 = "#if defined(PERL_CORE) || defined(PERL_EXT)\n";
521 $new_ifdef_state = "#ifdef PERL_CORE\n";
524 if ($new_ifdef_state ne $ifdef_state) {
525 $ret = $new_ifdef_state . $ret;
529 if ($ifdef_state && $new_ifdef_state ne $ifdef_state) {
530 # Close the old one ahead of opening the new one.
531 $ret = "#endif\n$ret";
533 # Remember the new state.
534 $ifdef_state = $new_ifdef_state;
539 print $em "#endif\n";
542 for $sym (sort keys %ppsym) {
544 if ($sym =~ /^ck_/) {
545 print $em hide("$sym(a)", "Perl_$sym(aTHX_ a)");
547 elsif ($sym =~ /^pp_/) {
548 print $em hide("$sym()", "Perl_$sym(aTHX)");
551 warn "Illegal symbol '$sym' in pp.sym";
557 #endif /* PERL_IMPLICIT_CONTEXT */
559 #endif /* #ifndef PERL_NO_SHORT_NAMES */
565 /* Compatibility stubs. Compile extensions with -DPERL_NOCOMPAT to
569 #if !defined(PERL_CORE)
570 # define sv_setptrobj(rv,ptr,name) sv_setref_iv(rv,name,PTR2IV(ptr))
571 # define sv_setptrref(rv,ptr) sv_setref_iv(rv,NULL,PTR2IV(ptr))
574 #if !defined(PERL_CORE) && !defined(PERL_NOCOMPAT)
576 /* Compatibility for various misnamed functions. All functions
577 in the API that begin with "perl_" (not "Perl_") take an explicit
578 interpreter context pointer.
579 The following are not like that, but since they had a "perl_"
580 prefix in previous versions, we provide compatibility macros.
582 # define perl_atexit(a,b) call_atexit(a,b)
583 # define perl_call_argv(a,b,c) call_argv(a,b,c)
584 # define perl_call_pv(a,b) call_pv(a,b)
585 # define perl_call_method(a,b) call_method(a,b)
586 # define perl_call_sv(a,b) call_sv(a,b)
587 # define perl_eval_sv(a,b) eval_sv(a,b)
588 # define perl_eval_pv(a,b) eval_pv(a,b)
589 # define perl_require_pv(a) require_pv(a)
590 # define perl_get_sv(a,b) get_sv(a,b)
591 # define perl_get_av(a,b) get_av(a,b)
592 # define perl_get_hv(a,b) get_hv(a,b)
593 # define perl_get_cv(a,b) get_cv(a,b)
594 # define perl_init_i18nl10n(a) init_i18nl10n(a)
595 # define perl_init_i18nl14n(a) init_i18nl14n(a)
596 # define perl_new_ctype(a) new_ctype(a)
597 # define perl_new_collate(a) new_collate(a)
598 # define perl_new_numeric(a) new_numeric(a)
600 /* varargs functions can't be handled with CPP macros. :-(
601 This provides a set of compatibility functions that don't take
602 an extra argument but grab the context pointer using the macro
605 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_NO_SHORT_NAMES)
606 # define croak Perl_croak_nocontext
607 # define deb Perl_deb_nocontext
608 # define die Perl_die_nocontext
609 # define form Perl_form_nocontext
610 # define load_module Perl_load_module_nocontext
611 # define mess Perl_mess_nocontext
612 # define newSVpvf Perl_newSVpvf_nocontext
613 # define sv_catpvf Perl_sv_catpvf_nocontext
614 # define sv_setpvf Perl_sv_setpvf_nocontext
615 # define warn Perl_warn_nocontext
616 # define warner Perl_warner_nocontext
617 # define sv_catpvf_mg Perl_sv_catpvf_mg_nocontext
618 # define sv_setpvf_mg Perl_sv_setpvf_mg_nocontext
621 #endif /* !defined(PERL_CORE) && !defined(PERL_NOCOMPAT) */
623 #if !defined(PERL_IMPLICIT_CONTEXT)
624 /* undefined symbols, point them back at the usual ones */
625 # define Perl_croak_nocontext Perl_croak
626 # define Perl_die_nocontext Perl_die
627 # define Perl_deb_nocontext Perl_deb
628 # define Perl_form_nocontext Perl_form
629 # define Perl_load_module_nocontext Perl_load_module
630 # define Perl_mess_nocontext Perl_mess
631 # define Perl_newSVpvf_nocontext Perl_newSVpvf
632 # define Perl_sv_catpvf_nocontext Perl_sv_catpvf
633 # define Perl_sv_setpvf_nocontext Perl_sv_setpvf
634 # define Perl_warn_nocontext Perl_warn
635 # define Perl_warner_nocontext Perl_warner
636 # define Perl_sv_catpvf_mg_nocontext Perl_sv_catpvf_mg
637 # define Perl_sv_setpvf_mg_nocontext Perl_sv_setpvf_mg
644 rename_if_different('embed.h-new', 'embed.h');
646 $em = safer_open('embedvar.h-new');
648 print $em do_not_edit ("embedvar.h"), <<'END';
650 /* (Doing namespace management portably in C is really gross.) */
653 The following combinations of MULTIPLICITY and PERL_IMPLICIT_CONTEXT
656 2) MULTIPLICITY # supported for compatibility
657 3) MULTIPLICITY && PERL_IMPLICIT_CONTEXT
659 All other combinations of these flags are errors.
661 only #3 is supported directly, while #2 is a special
662 case of #3 (supported by redefining vTHX appropriately).
665 #if defined(MULTIPLICITY)
666 /* cases 2 and 3 above */
668 # if defined(PERL_IMPLICIT_CONTEXT)
671 # define vTHX PERL_GET_INTERP
676 for $sym (sort keys %intrp) {
677 print $em multon($sym,'I','vTHX->');
682 #else /* !MULTIPLICITY */
688 for $sym (sort keys %intrp) {
689 print $em multoff($sym,'I');
698 #endif /* MULTIPLICITY */
700 #if defined(PERL_GLOBAL_STRUCT)
704 for $sym (sort keys %globvar) {
705 print $em multon($sym, 'G','my_vars->');
706 print $em multon("G$sym",'', 'my_vars->');
711 #else /* !PERL_GLOBAL_STRUCT */
715 for $sym (sort keys %globvar) {
716 print $em multoff($sym,'G');
721 #endif /* PERL_GLOBAL_STRUCT */
723 #ifdef PERL_POLLUTE /* disabled by default in 5.6.0 */
727 for $sym (sort @extvars) {
728 print $em hide($sym,"PL_$sym");
733 #endif /* PERL_POLLUTE */
739 rename_if_different('embedvar.h-new', 'embedvar.h');
741 my $capi = safer_open('perlapi.c-new');
742 my $capih = safer_open('perlapi.h-new');
744 print $capih do_not_edit ("perlapi.h"), <<'EOT';
746 /* declare accessor functions for Perl variables */
747 #ifndef __perlapi_h__
748 #define __perlapi_h__
750 #if defined (MULTIPLICITY)
759 #define PERLVAR(v,t) EXTERN_C t* Perl_##v##_ptr(pTHX);
760 #define PERLVARA(v,n,t) typedef t PL_##v##_t[n]; \
761 EXTERN_C PL_##v##_t* Perl_##v##_ptr(pTHX);
762 #define PERLVARI(v,t,i) PERLVAR(v,t)
763 #define PERLVARIC(v,t,i) PERLVAR(v, const t)
764 #define PERLVARISC(v,i) typedef const char PL_##v##_t[sizeof(i)]; \
765 EXTERN_C PL_##v##_t* Perl_##v##_ptr(pTHX);
767 #include "intrpvar.h"
768 #include "perlvars.h"
776 #ifndef PERL_GLOBAL_STRUCT
777 EXTERN_C Perl_ppaddr_t** Perl_Gppaddr_ptr(pTHX);
778 EXTERN_C Perl_check_t** Perl_Gcheck_ptr(pTHX);
779 EXTERN_C unsigned char** Perl_Gfold_locale_ptr(pTHX);
780 #define Perl_ppaddr_ptr Perl_Gppaddr_ptr
781 #define Perl_check_ptr Perl_Gcheck_ptr
782 #define Perl_fold_locale_ptr Perl_Gfold_locale_ptr
787 #if defined(PERL_CORE)
789 /* accessor functions for Perl variables (provide binary compatibility) */
791 /* these need to be mentioned here, or most linkers won't put them in
792 the perl executable */
794 #ifndef PERL_NO_FORCE_LINK
799 EXTCONST void * const PL_force_link_funcs[];
801 EXTCONST void * const PL_force_link_funcs[] = {
806 #define PERLVAR(v,t) (void*)Perl_##v##_ptr,
807 #define PERLVARA(v,n,t) PERLVAR(v,t)
808 #define PERLVARI(v,t,i) PERLVAR(v,t)
809 #define PERLVARIC(v,t,i) PERLVAR(v,t)
810 #define PERLVARISC(v,i) PERLVAR(v,char)
812 /* In Tru64 (__DEC && __osf__) the cc option -std1 causes that one
813 * cannot cast between void pointers and function pointers without
814 * info level warnings. The PL_force_link_funcs[] would cause a few
815 * hundred of those warnings. In code one can circumnavigate this by using
816 * unions that overlay the different pointers, but in declarations one
817 * cannot use this trick. Therefore we just disable the warning here
818 * for the duration of the PL_force_link_funcs[] declaration. */
820 #if defined(__DECC) && defined(__osf__)
822 #pragma message disable (nonstandcast)
825 #include "intrpvar.h"
826 #include "perlvars.h"
828 #if defined(__DECC) && defined(__osf__)
829 #pragma message restore
842 #endif /* PERL_NO_FORCE_LINK */
844 #else /* !PERL_CORE */
848 foreach $sym (sort keys %intrp) {
849 print $capih bincompat_var('I',$sym);
852 foreach $sym (sort keys %globvar) {
853 print $capih bincompat_var('G',$sym);
856 print $capih <<'EOT';
858 #endif /* !PERL_CORE */
859 #endif /* MULTIPLICITY */
861 #endif /* __perlapi_h__ */
866 rename_if_different('perlapi.h-new', 'perlapi.h');
868 print $capi do_not_edit ("perlapi.c"), <<'EOT';
874 #if defined (MULTIPLICITY)
876 /* accessor functions for Perl variables (provides binary compatibility) */
885 #define PERLVAR(v,t) t* Perl_##v##_ptr(pTHX) \
886 { dVAR; PERL_UNUSED_CONTEXT; return &(aTHX->v); }
887 #define PERLVARA(v,n,t) PL_##v##_t* Perl_##v##_ptr(pTHX) \
888 { dVAR; PERL_UNUSED_CONTEXT; return &(aTHX->v); }
890 #define PERLVARI(v,t,i) PERLVAR(v,t)
891 #define PERLVARIC(v,t,i) PERLVAR(v, const t)
892 #define PERLVARISC(v,i) PL_##v##_t* Perl_##v##_ptr(pTHX) \
893 { dVAR; PERL_UNUSED_CONTEXT; return &(aTHX->v); }
895 #include "intrpvar.h"
899 #define PERLVAR(v,t) t* Perl_##v##_ptr(pTHX) \
900 { dVAR; PERL_UNUSED_CONTEXT; return &(PL_##v); }
901 #define PERLVARA(v,n,t) PL_##v##_t* Perl_##v##_ptr(pTHX) \
902 { dVAR; PERL_UNUSED_CONTEXT; return &(PL_##v); }
905 #define PERLVARIC(v,t,i) \
906 const t* Perl_##v##_ptr(pTHX) \
907 { PERL_UNUSED_CONTEXT; return (const t *)&(PL_##v); }
908 #define PERLVARISC(v,i) PL_##v##_t* Perl_##v##_ptr(pTHX) \
909 { dVAR; PERL_UNUSED_CONTEXT; return &(PL_##v); }
910 #include "perlvars.h"
918 #ifndef PERL_GLOBAL_STRUCT
919 /* A few evil special cases. Could probably macrofy this. */
922 #undef PL_fold_locale
923 Perl_ppaddr_t** Perl_Gppaddr_ptr(pTHX) {
924 static Perl_ppaddr_t* const ppaddr_ptr = PL_ppaddr;
926 return (Perl_ppaddr_t**)&ppaddr_ptr;
928 Perl_check_t** Perl_Gcheck_ptr(pTHX) {
929 static Perl_check_t* const check_ptr = PL_check;
931 return (Perl_check_t**)&check_ptr;
933 unsigned char** Perl_Gfold_locale_ptr(pTHX) {
934 static unsigned char* const fold_locale_ptr = PL_fold_locale;
936 return (unsigned char**)&fold_locale_ptr;
942 #endif /* MULTIPLICITY */
948 rename_if_different('perlapi.c-new', 'perlapi.c');
950 # functions that take va_list* for implementing vararg functions
951 # NOTE: makedef.pl must be updated if you add symbols to %vfuncs
952 # XXX %vfuncs currently unused
954 Perl_croak Perl_vcroak
956 Perl_warner Perl_vwarner
959 Perl_load_module Perl_vload_module
962 Perl_newSVpvf Perl_vnewSVpvf
963 Perl_sv_setpvf Perl_sv_vsetpvf
964 Perl_sv_setpvf_mg Perl_sv_vsetpvf_mg
965 Perl_sv_catpvf Perl_sv_vcatpvf
966 Perl_sv_catpvf_mg Perl_sv_vcatpvf_mg
967 Perl_dump_indent Perl_dump_vindent
968 Perl_default_protect Perl_vdefault_protect
971 # ex: set ts=8 sts=4 sw=4 noet: