• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/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
7