summaryrefslogtreecommitdiff
path: root/generateexportedsymbols.awk
blob: 19312c381eab293e4e55ba7f0a9116d4e75689a4 (plain)
1
2
3
4
5
6
{ 
	# Remove the CR character in case the sources are mapped from
	# a Windows share and contain CRLF line endings
	gsub(/\r/,"", $0);
	print "_"  $0;
}