summaryrefslogtreecommitdiffstats
path: root/libc/tools
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-02-19 18:59:19 -0800
committerElliott Hughes <enh@google.com>2014-02-19 18:59:19 -0800
commitd465eb4e76c24b1e782438a4c9e2c9abc20fe66c (patch)
tree585ce3fcd571871c83eea24940cf583e0ba44324 /libc/tools
parentfbaddda9f04fa504deb752bba819eb1fa5439baa (diff)
downloadbionic-d465eb4e76c24b1e782438a4c9e2c9abc20fe66c.zip
bionic-d465eb4e76c24b1e782438a4c9e2c9abc20fe66c.tar.gz
bionic-d465eb4e76c24b1e782438a4c9e2c9abc20fe66c.tar.bz2
Remove the useless _C_LABEL from generated system calls.
Change-Id: Id1d2fd39972652831ea825f6f9cf940b08f42b5c
Diffstat (limited to 'libc/tools')
-rwxr-xr-xlibc/tools/gensyscalls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/tools/gensyscalls.py b/libc/tools/gensyscalls.py
index da30da2..8a5f3d2 100755
--- a/libc/tools/gensyscalls.py
+++ b/libc/tools/gensyscalls.py
@@ -288,7 +288,7 @@ def add_footer(pointer_length, stub, syscall):
# Use hidden visibility for any functions beginning with underscores.
if pointer_length == 64 and syscall["func"].startswith("__"):
- stub += '.hidden _C_LABEL(' + syscall["func"] + ')\n'
+ stub += '.hidden ' + syscall["func"] + '\n'
return stub