Skip to content

Commit

Permalink
Add stdin, stdout, stderr to ignored export list
Browse files Browse the repository at this point in the history
  • Loading branch information
ken2812221 authored and alejandromgk committed Feb 19, 2019
1 parent be5bb21 commit 53089b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/devtools/symbol-check.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

# Ignore symbols that are exported as part of every executable
IGNORE_EXPORTS = {
'_edata', '_end', '_init', '__bss_start', '_fini', '_IO_stdin_used'
'_edata', '_end', '_init', '__bss_start', '_fini', '_IO_stdin_used', 'stdin', 'stdout', 'stderr'
}
READELF_CMD = os.getenv('READELF', '/usr/bin/readelf')
CPPFILT_CMD = os.getenv('CPPFILT', '/usr/bin/c++filt')
Expand Down

0 comments on commit 53089b5

Please sign in to comment.