blob: b9a9a0cfccc0b703d59ea2459bcfa5c0d2127f1e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Extract the initialization actions for builtin things.
## Let the user override the preprocessor autoconf found.
test -n "${CPP+set}" || CPP="@CPP@"
${CPP} -DSCM_MAGIC_SNARFER "$@" | grep "^ *% *% *%" | sed -e "s/^ *% *% *%//"
## Apparently, AIX's preprocessor is unhappy if you try to #include an
## empty file.
echo
|