Skip to content

Commit 253f592

Browse files
committed
Add stdin, stdout, stderr to ignored export list
1 parent fc6a9f2 commit 253f592

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/devtools/symbol-check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

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

0 commit comments

Comments
 (0)