view ifndef_wrapper.sh @ 1670:aeda68938596

Add files via upload (#90) When SSHKeepAlive is enabled, dropbear idletimeout is not working as expected.
author jcmathews <jesselcmathews@yahoo.co.in>
date Mon, 25 May 2020 18:32:59 +0530
parents 0196f4f83fee
children
line wrap: on
line source

#!/bin/sh

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

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