File: sv_isa.c.inc

package info (click to toggle)
libsyntax-keyword-assert-perl 0.16-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 196 kB
  • sloc: perl: 98; pascal: 69; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 147 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
/* vi: set ft=c : */
#if HAVE_PERL_VERSION(5,31,7)
#else

#define OP_ISA 396

static bool sv_isa_sv(SV *lhs, SV *rhs) {
    return true;
}

#endif