projects
/
platform
/
upstream
/
coreclr.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Set vtable offset as contained
[platform/upstream/coreclr.git]
/
generateexportedsymbols.awk
1
{
2
# Remove the CR character in case the sources are mapped from
3
# a Windows share and contain CRLF line endings
4
gsub(/\r/,"", $0);
5
6
# Skip empty lines and comment lines starting with semicolon
7
if (NF && !match($0, /^[:space:]*;/))
8
{
9
gsub(/^#/,"", $0);
10
print "_" $0;
11
}
12
}