11 lines
123 B
Sed
11 lines
123 B
Sed
/#[ ]*ifndef[ ][ ]*[^_]/{
|
|
:loop
|
|
/#[ ]*endif/!{
|
|
s;\(#[ ]*define\);//\1;
|
|
p
|
|
N
|
|
s;.*\n;;
|
|
b loop
|
|
}
|
|
}
|