summaryrefslogtreecommitdiff
path: root/ifndef_wrapper.sh
blob: e2545d40a46cdc0061ee61037f7863b14a33bb1e (plain)
1
2
3
4
5
6
7
#!/bin/sh

# Wrap all "#define X Y" with a #ifndef X...#endif"

sed -E 's/^( *#define ([^ ]+) .*)/#ifndef \2\
\1\
#endif/'