| 1 | #!/usr/bin/env perl |
|---|---|
| 2 | |
| 3 | use Cwd qw/ abs_path /; |
| 4 | use File::Basename qw/ dirname /; |
| 5 | # Add scan-build dir to the list of places where perl looks for modules. |
| 6 | use lib dirname(abs_path($0)); |
| 7 | |
| 8 | do 'ccc-analyzer'; |
| 9 |
| 1 | #!/usr/bin/env perl |
|---|---|
| 2 | |
| 3 | use Cwd qw/ abs_path /; |
| 4 | use File::Basename qw/ dirname /; |
| 5 | # Add scan-build dir to the list of places where perl looks for modules. |
| 6 | use lib dirname(abs_path($0)); |
| 7 | |
| 8 | do 'ccc-analyzer'; |
| 9 |