view ifndef_wrapper.sh @ 1387:e7f11ed5fe28

Use DROPBEAR_PATH_DEVNULL instead of undefined _PATH_DEVNULL
author Ben Gardner <bgardner@wabtec.com>
date Tue, 24 May 2016 17:34:10 -0500
parents 750ec4ec4cbe
children 198e2ee0f4b1
line wrap: on
line source

#!/bin/sh

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

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