mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
12 lines
274 B
Awk
12 lines
274 B
Awk
BEGIN {
|
|
print "/* GENERATED FILE */";
|
|
print "#define ORDERED"
|
|
}
|
|
{
|
|
if (!match($0, "^#include"))
|
|
gsub(/hashmap/, "ordered_hashmap");
|
|
gsub(/HASHMAP/, "ORDERED_HASHMAP");
|
|
gsub(/Hashmap/, "OrderedHashmap");
|
|
print
|
|
}
|