X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=tools%2Fcheck-exports;h=88818a1ebefb6411a0d7e7d051316576a1dddfc1;hb=50c7c2b64a94a085b20e375bc67180a4470c2564;hp=c336c01c83f00a43f4a1547a706b5dee29360b64;hpb=c80c183d44ab8df878945183ca9e89739ec6cd5c;p=libucw.git diff --git a/tools/check-exports b/tools/check-exports index c336c01c..88818a1e 100755 --- a/tools/check-exports +++ b/tools/check-exports @@ -1,6 +1,6 @@ #!/usr/bin/perl # Check symbols exported by a library -# (c) 2013 Martin Mares +# (c) 2014 Martin Mares 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]}) {