blob: bcce34c8a586882f1c135aa877033eb205b4706d [file] [log] [blame]
Denys Vlasenkoaea4b872012-02-28 16:39:44 +01001#!/bin/sh
2
3grep '^#define' dummy.h | cut -f2 | \
4while read func; do
5 grep -q -F -- "${func}(" syscall.h && echo "Defined as macro and as func: $func"
6done