Commit | Line | Data |
---|---|---|
b128a327 | 1 | #!/usr/bin/perl -w |
2 | ||
3 | # | |
c9fe4ea1 | 4 | # Maintainers - show information about maintainers |
b128a327 | 5 | # |
6 | ||
7 | use strict; | |
0cf51544 | 8 | use lib "Porting"; |
b128a327 | 9 | |
0cf51544 | 10 | use Maintainers qw(show_results process_options); |
b128a327 | 11 | |
0cf51544 | 12 | show_results(process_options()); |
b128a327 | 13 | |
b128a327 | 14 |