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