The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use warnings;
use strict;

package PROTO5;

use Inline C => Config =>
     DIRECTORY => '_Inline_test',
     PROTOTYPES => 'RUBBISH',
     PROTOTYPE => {foo => 'DISABLE'},
     #BUILD_NOISY => 1,
     #CLEAN_AFTER_BUILD => 0,
     ;

use Inline C => <<'EOC';

int foo(SV * x) {
     return 23;
}

EOC

my $x = foo(1, 2);