Help for this page

Select Code to Download


  1. or download this
    STATIC void croak_for_this_reason(pTHX_ ...) {
       dVAR;
    ...
    }
    
    croak_for_this_reason(aTHX_ ...);
    
  2. or download this
    STATIC void croak_for_this_reason(pTHX_ ...) {
       ...
    ...
    }
    
    croak_for_this_reason(aTHX_ ...);
    
  3. or download this
    STATIC void croak_for_this_reason(pTHX_ ...) {
    #define croak_for_this_reason(...) croak_for_this_reason(aTHX_ ...)
    ...
    }
    
    croak_for_this_reason(...);