Merge pull request #1065 from janvorli/minimize-coreclr-exports
[platform/upstream/coreclr.git] / generateversionscript.awk
1 BEGIN {
2         print "V1.0 {";
3         print "    global:";
4
5
6         # Remove the CR character in case the sources are mapped from
7         # a Windows share and contain CRLF line endings
8         gsub(/\r/,"", $0);
9         print "        "  $0 ";";
10
11 END {
12         print "    local: *;"
13         print "};";
14 }