diff options
author | dim <dim@FreeBSD.org> | 2010-11-11 21:36:52 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2010-11-11 21:36:52 +0000 |
commit | 723162fdf70cb6158ab5e5e275ef735b415fec76 (patch) | |
tree | 8ec2054d5721a92c38b00305be6ffca7d817f125 /lib | |
parent | c08375b9a103f50bb13e44df0adf57a6a504e01a (diff) | |
download | FreeBSD-src-723162fdf70cb6158ab5e5e275ef735b415fec76.zip FreeBSD-src-723162fdf70cb6158ab5e5e275ef735b415fec76.tar.gz |
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.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/include/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/include/compat.h b/lib/libc/include/compat.h index 13c1d20..7694540 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); |