mirror of
https://github.com/systemd/systemd.git
synced 2024-11-07 01:27:11 +03: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
|
|
}
|