1 /* 2 * lintmain.c: Main routine for xmllint 3 * 4 * See Copyright for the status of this software. 5 */ 6 7 #include <stdio.h> 8 9 #include "private/lint.h" 10 11 int main(int argc,char ** argv)12main(int argc, char **argv) { 13 return(xmllintMain(argc, (const char **) argv, stderr, NULL)); 14 } 15