repo.or.cz
/
notion
/
jeffpc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Include mod_xrandr instead of using submodules
[notion/jeffpc.git]
/
utils
/
profiling
/
filterinternal.pl
blob
17de0817141ef1127d4252ff3277edb9ae66fc91
1
#!/usr/bin/perl
2
3
use
strict
;
4
use
warnings
;
5
6
while
(<
STDIN
> =~
/(\w)\t([^\t]*)\t(.*)/
)
7
{
8
my
(
$action
,
$called
,
$rest
) = (
$1
,
$2
,
$3
);
9
if
(
$called
!~
/extl/
&&
$called
!~
/exports.c/
) {
10
print
"
$1
\t
$2
\t
$3
\n
"
;
11
}
12
}