Include mod_xrandr instead of using submodules
[notion/jeffpc.git] / utils / profiling / filterinternal.pl
blob17de0817141ef1127d4252ff3277edb9ae66fc91
1 #!/usr/bin/perl
3 use strict;
4 use warnings;
6 while (<STDIN> =~ /(\w)\t([^\t]*)\t(.*)/)
8 my ($action, $called, $rest) = ($1, $2, $3);
9 if ($called !~ /extl/ && $called !~ /exports.c/) {
10 print "$1\t$2\t$3\n";