mirror of
http://galexander.org/git/simplesshd.git
synced 2024-10-31 20:40:22 +00:00
9 lines
111 B
Bash
9 lines
111 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
EXITCODE=0
|
||
|
|
||
|
# #ifdef instead of #if
|
||
|
grep '#ifdef DROPBEAR' -I *.c *.h && EXITCODE=1
|
||
|
|
||
|
exit $EXITCODE
|