dropbear_lint.sh 111 B

12345678
  1. #!/bin/sh
  2. EXITCODE=0
  3. # #ifdef instead of #if
  4. grep '#ifdef DROPBEAR' -I *.c *.h && EXITCODE=1
  5. exit $EXITCODE