diff options
author | Mike Hommey <glandium@debian.org> | 2005-03-27 13:13:58 +0000 |
---|---|---|
committer | Mike Hommey <glandium@debian.org> | 2005-03-27 13:13:58 +0000 |
commit | 50e5b428562964b1eb2f876370058b34b47c5e90 (patch) | |
tree | c66bcae6dbbce07128ee881353ff60090524462c /doc/examples/xpath1.c | |
parent | a7457388701e6ccba9091ba3ec09505dc903b758 (diff) | |
download | libxml2-50e5b428562964b1eb2f876370058b34b47c5e90.tar.gz |
Load /tmp/tmp.XJZ6qc/libxml2-2.6.18 intoupstream/2.6.18
packages/libxml2/branches/upstream/current.
Diffstat (limited to 'doc/examples/xpath1.c')
-rw-r--r-- | doc/examples/xpath1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/xpath1.c b/doc/examples/xpath1.c index be1dd2a..f2f7406 100644 --- a/doc/examples/xpath1.c +++ b/doc/examples/xpath1.c @@ -21,7 +21,7 @@ #if defined(LIBXML_XPATH_ENABLED) && defined(LIBXML_SAX1_ENABLED) -void usage(const char *name); +static void usage(const char *name); int execute_xpath_expression(const char* filename, const xmlChar* xpathExpr, const xmlChar* nsList); int register_namespaces(xmlXPathContextPtr xpathCtx, const xmlChar* nsList); void print_xpath_nodes(xmlNodeSetPtr nodes, FILE* output); @@ -61,7 +61,7 @@ main(int argc, char **argv) { * * Prints usage information. */ -void +static void usage(const char *name) { assert(name); |