Files
SDK_RK3288/external/strace/linux/dummy_check.sh

7 lines
156 B
Bash
Executable File

#!/bin/sh
grep '^#define' dummy.h | cut -f2 | \
while read func; do
grep -q -F -- "${func}(" syscall.h && echo "Defined as macro and as func: $func"
done