source: branches/minix3-book/tools/tell_config@ 4

Last change on this file since 4 was 4, checked in by Mattia Monga, 13 years ago

Importazione sorgenti libro

File size: 206 bytes
Line 
1#!/bin/sh
2#
3# tellconfig - Tell the value of a <minix/config.h> parameter
4# Author: Kees J. Bot
5
6echo "
7#include <minix/config.h>
8$*
9" >/tmp/tell.$$
10exec </tmp/tell.$$
11rm /tmp/tell.$$
12
13exec cc -P -E -
Note: See TracBrowser for help on using the repository browser.