mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-19 15:30:29 +00:00
8 lines
228 B
Awk
8 lines
228 B
Awk
|
|
# Add htmlsax.h include as first line of file. This is needed to let
|
||
|
|
# Python.h be included before any system headers.
|
||
|
|
# See also http://docs.python.org/api/includes.html
|
||
|
|
BEGIN {
|
||
|
|
print "#include \"htmlsax.h\"";
|
||
|
|
}
|
||
|
|
{ print; }
|