summary refs log tree commit diff
path: root/src/NetworkManager.ver
blob: d5358e5c0c12ed29bc321fee18f5576818e118e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
global:
	nm_*;
	nmp_*;
	_nm*;
	NM*;
	_NM*;

	/* The _IO_stdin_used symbol is used by the GNU libc to determine
	   which version of the I/O function should be used.  Not
	   exporting it means that the "old" version is used, causing
	   crashes or other issues on some architectures.  It should be
	   exported as an anonymous tag, but ld does not support mixing
	   anonymous version tags with other version tags.  Fortunately
	   the GNU libc is able to cope with the symbol having the wrong
	   version tag. */
	_IO_stdin_used;
local:
	*;
};