diff options
author | Roland McGrath <roland@gnu.org> | 2005-08-08 20:52:23 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-08-08 20:52:23 +0000 |
commit | 820e7d0b0877fbf8273ef3b3810d822df429d5c5 (patch) | |
tree | 3407202058535d764ef5e901631ab0be1039e84f /mach | |
parent | f54a329a28050846c0475b45f8bf131f66eab996 (diff) | |
download | glibc-820e7d0b0877fbf8273ef3b3810d822df429d5c5.tar.gz glibc-820e7d0b0877fbf8273ef3b3810d822df429d5c5.tar.xz glibc-820e7d0b0877fbf8273ef3b3810d822df429d5c5.zip |
2005-08-05 Roland McGrath <roland@redhat.com>
* mach/shortcut.awk: Ignore `weak_alias' lines. Reported by Alfred M. Szmidt <ams@gnu.org>.
Diffstat (limited to 'mach')
-rw-r--r-- | mach/shortcut.awk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mach/shortcut.awk b/mach/shortcut.awk index 1857998122..ea283d49ba 100644 --- a/mach/shortcut.awk +++ b/mach/shortcut.awk @@ -7,6 +7,8 @@ BEGIN { print "/* This file is generated by shortcut.awk. */"; $1 == "LINTLIBRARY" { print "#include <mach.h>"; next } +$1 == "weak_alias" { next } + # Copy the first line of the definition, but # replace the function name (RPC) with CALL. $NF == rpc \ |