]> mj.ucw.cz Git - libucw.git/blobdiff - tools/check-exports
Opt: Documented opt and its interaction with conf
[libucw.git] / tools / check-exports
index c336c01c83f00a43f4a1547a706b5dee29360b64..88818a1ebefb6411a0d7e7d051316576a1dddfc1 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 # Check symbols exported by a library
-# (c) 2013 Martin Mares <mj@ucw.cz>
+# (c) 2014 Martin Mares <mj@ucw.cz>
 
 use common::sense;
 
@@ -10,7 +10,7 @@ while (<$f>) {
        chomp;
        next if /^\s/;
        my ($addr, $type, $sym) = split /\s+/;
-       if ($sym =~ m{^ucw_}) {
+       if ($sym =~ m{^(ucw|ucwlib)_}) {
                next
        }
        if ($type =~ m{[A-Z]}) {