summaryrefslogtreecommitdiffhomepage
path: root/ifndef_wrapper.sh
blob: a5c5ce6b2fa4f21c4b8ca75d8dce1c482b58f4cf (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/'