commit | 986f9067103e41296898a7c0e89f5ed84420fb5b | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Tue Feb 18 16:42:36 2014 -0800 |
committer | Elliott Hughes <enh@google.com> | Tue Feb 18 16:42:36 2014 -0800 |
tree | 2c8aff9ef2cd15f628ad735a801a76256d9c0279 | |
parent | 787c1f937a915feefb767d0c6a15ddb70e6de933 [diff] [blame] |
Fix build by avoiding the _C_LABEL macro. Change-Id: Ide367c2b65071388bd95fbc81a4ed6ae94aec4e4
diff --git a/libc/tools/gensyscalls.py b/libc/tools/gensyscalls.py index 30590cd..6388ee1 100755 --- a/libc/tools/gensyscalls.py +++ b/libc/tools/gensyscalls.py
@@ -48,8 +48,8 @@ function_alias = """ - .globl _C_LABEL(%(alias)s) - .equ _C_LABEL(%(alias)s), _C_LABEL(%(func)s) + .globl %(alias)s + .equ %(alias)s, %(func)s """