mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 19:07:28 +00:00
8 lines
122 B
Bash
Executable File
8 lines
122 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Wrap all "#define X Y" with a #ifndef X...#endif"
|
|
|
|
sed -E 's/^(#define ([^ ]+) .*)/#ifndef \2\
|
|
\1\
|
|
#endif/'
|