Add x32 ffs

This commit is contained in:
H.J. Lu 2012-05-16 11:52:35 -07:00
parent 6a3951a036
commit 617aca05db
2 changed files with 8 additions and 0 deletions

View File

@ -9,6 +9,10 @@
* include/stdc-predef.h (__STDC_ISO_10646__): Increase to 201103L.
2012-05-16 H.J. Lu <hongjiu.lu@intel.com>
* sysdeps/x86_64/x32/ffs.c: New file.
2012-05-16 H.J. Lu <hongjiu.lu@intel.com>
* sysdeps/unix/sysv/linux/x86_64/bits/shm.h (shmatt_t): Use

4
sysdeps/x86_64/x32/ffs.c Normal file
View File

@ -0,0 +1,4 @@
#define ffsl __something_else
#include <sysdeps/x86_64/ffs.c>
#undef ffsl
weak_alias (__ffs, ffsl)