xref: /netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build/libexec/c++-analyzer (revision 7330f729ccf0bd976a06f95fad452fe774fc7fd1)
1*7330f729Sjoerg#!/usr/bin/env perl
2*7330f729Sjoerg
3*7330f729Sjoerguse Cwd qw/ abs_path /;
4*7330f729Sjoerguse File::Basename qw/ dirname /;
5*7330f729Sjoerg# Add scan-build dir to the list of places where perl looks for modules.
6*7330f729Sjoerguse lib dirname(abs_path($0));
7*7330f729Sjoerg
8*7330f729Sjoergdo 'ccc-analyzer';
9