mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
15 lines
251 B
C
15 lines
251 B
C
/*
|
|
* lintmain.c: Main routine for xmllint
|
|
*
|
|
* See Copyright for the status of this software.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "private/lint.h"
|
|
|
|
int
|
|
main(int argc, char **argv) {
|
|
return(xmllintMain(argc, (const char **) argv, stderr, NULL));
|
|
}
|