3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-02 09:28:46 +02:00
pbot/modules/compiler_vm/languages/server/c99.pm
Pragmatic Software b3081b9e9f Add compiler_vm support for clang
Also renamed c11.pm to _c_base.pm and set the C languages to inherit
from _c_base.pm instead of c11.pm.
2015-01-15 01:21:18 -08:00

10 lines
83 B
Perl
Executable File

#!/usr/bin/perl
use warnings;
use strict;
package c99;
use parent '_c_base';
1;