mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 02:46:58 +00:00
9 lines
114 B
Bash
Executable File
9 lines
114 B
Bash
Executable File
#!/bin/sh
|
|
|
|
EXITCODE=0
|
|
|
|
# #ifdef instead of #if
|
|
grep '#ifdef DROPBEAR' -I -- *.c *.h && EXITCODE=1
|
|
|
|
exit $EXITCODE
|