#!/usr/local/bin/perl

use strict;
use warnings;
use Test::More tests => 1;

use Inline C =>
    Config =>
        LIBS => '-lm',
        ENABLE => 'AUTOWRAP';

Inline->import( C => <<END_HEADERS );
char* strcat(char*,const char*);
END_HEADERS

ok(strcat("foo","bar") eq "foobar");
