Minix2.0/src/tools/tell_config

#!/bin/sh
#
#	tellconfig - Tell the value of a <minix/config.h> parameter
#						Author: Kees J. Bot

echo "
#include <minix/config.h>
$*
" >/tmp/tell.$$
exec </tmp/tell.$$
rm /tmp/tell.$$

exec cc -P -E -