diff options
Diffstat (limited to 'tools/perf/config/feature-checks/test-libperl.c')
-rw-r--r-- | tools/perf/config/feature-checks/test-libperl.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/perf/config/feature-checks/test-libperl.c b/tools/perf/config/feature-checks/test-libperl.c new file mode 100644 index 000000000000..8871f6a0fdb4 --- /dev/null +++ b/tools/perf/config/feature-checks/test-libperl.c | |||
@@ -0,0 +1,9 @@ | |||
1 | #include <EXTERN.h> | ||
2 | #include <perl.h> | ||
3 | |||
4 | int main(void) | ||
5 | { | ||
6 | perl_alloc(); | ||
7 | |||
8 | return 0; | ||
9 | } | ||