source:
branches/minix3-book/tools/tell_config@
26
Last change on this file since 26 was 4, checked in by , 14 years ago | |
---|---|
File size: 206 bytes |
Rev | Line | |
---|---|---|
[4] | 1 | #!/bin/sh |
2 | # | |
3 | # tellconfig - Tell the value of a <minix/config.h> parameter | |
4 | # Author: Kees J. Bot | |
5 | ||
6 | echo " | |
7 | #include <minix/config.h> | |
8 | $* | |
9 | " >/tmp/tell.$$ | |
10 | exec </tmp/tell.$$ | |
11 | rm /tmp/tell.$$ | |
12 | ||
13 | exec cc -P -E - |
Note:
See TracBrowser
for help on using the repository browser.