File: fixincludes.awk

package info (click to toggle)
linkchecker 5.2-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,508 kB
  • ctags: 3,805
  • sloc: python: 22,666; lex: 1,114; yacc: 785; makefile: 276; ansic: 95; sh: 68; sql: 19; 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; }