1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

* scripts/versions.awk: No errors for GLIBC_PRIVATE.

This commit is contained in:
Roland McGrath
2005-03-23 01:46:42 +00:00
parent 2fb9a65c22
commit 8ac78e6062
2 changed files with 3 additions and 1 deletions

View File

@ -53,7 +53,7 @@ BEGIN {
/^ [A-Za-z_]/ {
if (renamed[actlib "::" $1])
actver = renamed[actlib "::" $1];
else if (!versions[actlib "::" $1]) {
else if (!versions[actlib "::" $1] && $1 != "GLIBC_PRIVATE") {
printf("version %s not defined for %s\n", $1, actlib) > "/dev/stderr";
++lossage;
}