13 lines
226 B
Bash
Executable file
13 lines
226 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# tellconfig - Tell the value of a <minix/config.h> parameter
|
|
# Author: Kees J. Bot
|
|
|
|
echo "
|
|
#include \"../common/include/minix/config.h\"
|
|
$*
|
|
" >/tmp/tell.$$
|
|
exec </tmp/tell.$$
|
|
rm /tmp/tell.$$
|
|
|
|
exec cc -P -E -
|