mirror of
https://github.com/ctm/executor.git
synced 2024-11-23 20:32:28 +00:00
10 lines
144 B
Perl
10 lines
144 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
while (<STDIN>) {
|
||
|
if (!$found && /^\#include/) {
|
||
|
print "#include \"rsys/common.h\"\n";
|
||
|
$found = 1;
|
||
|
}
|
||
|
print $_;
|
||
|
}
|