mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-03 10:39:31 +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
83 B
Perl
Executable File
10 lines
83 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use warnings;
|
|
use strict;
|
|
|
|
package c89;
|
|
use parent '_c_base';
|
|
|
|
1;
|