summaryrefslogtreecommitdiff
path: root/dropbear_lint.sh
blob: 4e8d33b8d515eb2c69d9d58f4413a4563fc20d7c (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

EXITCODE=0

# #ifdef instead of #if
grep '#ifdef DROPBEAR' -I -- *.c *.h && EXITCODE=1

exit $EXITCODE