mirror of
http://galexander.org/git/simplesshd.git
synced 2025-01-04 04:00:55 +00:00
8 lines
129 B
Bash
8 lines
129 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Wrap all "#define X Y" with a #ifndef X...#endif"
|
||
|
|
||
|
sed 's/^\( *#define \([^ ][^ ]*\) .*\)/#ifndef \2\
|
||
|
\1\
|
||
|
#endif/'
|