source:
trunk/minix/tools/tell_config@
10
Last change on this file since 10 was 9, checked in by , 13 years ago | |
---|---|
|
|
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 | |
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.