blob: 20a14df98915cd8fc39522676e6853197e63b484 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/perl -w
#
# Maintainers - show information about maintainers
#
use strict;
use lib "Porting";
use Maintainers qw(show_results process_options);
show_results(process_options());
|