File: fixincludes.awk

package info (click to toggle)
linkchecker 9.3-1
  • links: PTS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 4,392 kB
  • sloc: python: 27,603; lex: 1,141; yacc: 821; makefile: 408; sh: 138; ansic: 95; sql: 20; awk: 4
file content (7 lines) | stat: -rw-r--r-- 228 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
# 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; }