aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2010-11-11 21:36:52 +0000
committerDimitry Andric <dim@FreeBSD.org>2010-11-11 21:36:52 +0000
commit9f0c8034d805598c91af90934b59269860eefc96 (patch)
tree8ec2054d5721a92c38b00305be6ffca7d817f125 /lib
parent54873b4cd6c691e7135ac9647afc5d54875d8a2c (diff)
downloadsrc-9f0c8034d805598c91af90934b59269860eefc96.tar.gz
src-9f0c8034d805598c91af90934b59269860eefc96.zip
Remove some unneeded spaces from the __sym_compat() macro, since newer
versions of gas are more fussy about spaces surrounding '@' signs in versioned symbol names.
Notes
Notes: svn path=/head/; revision=215144
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/include/compat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/include/compat.h b/lib/libc/include/compat.h
index 13c1d2043e76..769454002788 100644
--- a/lib/libc/include/compat.h
+++ b/lib/libc/include/compat.h
@@ -36,7 +36,7 @@
#define __LIBC_COMPAT_H__
#define __sym_compat(sym,impl,verid) \
- .symver impl , sym @ verid
+ .symver impl, sym@verid
__sym_compat(__semctl, freebsd7___semctl, FBSD_1.0);
__sym_compat(msgctl, freebsd7_msgctl, FBSD_1.0);