mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-10 17:23:13 +02:00
5849092137
with a new module API. Is currently not autoconf'ied, makefile'ed, etc. May the screaming commence.
16 lines
139 B
Awk
16 lines
139 B
Awk
|
|
BEGIN {
|
|
printf "#include <map>\n"
|
|
}
|
|
{
|
|
if ($1 == "@extensible")
|
|
{
|
|
system("cat ../velcro/extensibles.tmpl")
|
|
}
|
|
else
|
|
{
|
|
print
|
|
}
|
|
}
|
|
|