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