kernel-doc (c15de5a19a2881205f6f893869584c99cbe4fae4) | kernel-doc (834cf6b9039e6f6ebd73cc4da51cc8bc802ca777) |
---|---|
1#!/usr/bin/env perl 2# SPDX-License-Identifier: GPL-2.0 3 4use warnings; 5use strict; 6 7## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ## 8## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ## --- 69 unchanged lines hidden (view full) --- 78 79# 25/07/2012 - Added support for HTML5 80# -- Dan Luedtke <mail@danrl.de> 81 82sub usage { 83 my $message = <<"EOF"; 84Usage: $0 [OPTION ...] FILE ... 85 | 1#!/usr/bin/env perl 2# SPDX-License-Identifier: GPL-2.0 3 4use warnings; 5use strict; 6 7## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ## 8## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ## --- 69 unchanged lines hidden (view full) --- 78 79# 25/07/2012 - Added support for HTML5 80# -- Dan Luedtke <mail@danrl.de> 81 82sub usage { 83 my $message = <<"EOF"; 84Usage: $0 [OPTION ...] FILE ... 85 |
86Other parameters: 87 -v Verbose output, more warnings and other information. 88 -h Print this help. 89 -Werror Treat warnings as errors. 90 | |
91EOF 92 print $message; 93 exit 1; 94} 95 96# 97# format of comments. 98# In the following table, (...)? signifies optional structure. --- 2524 unchanged lines hidden (view full) --- 2623=over 8 2624 2625=item -enable-lineno 2626 2627Enable output of #define LINENO lines. 2628 2629=back 2630 | 86EOF 87 print $message; 88 exit 1; 89} 90 91# 92# format of comments. 93# In the following table, (...)? signifies optional structure. --- 2524 unchanged lines hidden (view full) --- 2618=over 8 2619 2620=item -enable-lineno 2621 2622Enable output of #define LINENO lines. 2623 2624=back 2625 |
2626=head2 Other parameters: 2627 2628=over 8 2629 2630=item -h, -help 2631 2632Print this help. 2633 2634=item -v 2635 2636Verbose output, more warnings and other information. 2637 2638=item -Werror 2639 2640Treat warnings as errors. 2641 2642=back 2643 |
|
2631=cut | 2644=cut |