mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-03 02:29:32 +01:00
b3081b9e9f
Also renamed c11.pm to _c_base.pm and set the C languages to inherit from _c_base.pm instead of c11.pm.
10 lines
85 B
Perl
Executable File
10 lines
85 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use warnings;
|
|
use strict;
|
|
|
|
package clang;
|
|
use parent 'clang11';
|
|
|
|
1;
|