Actions
Feature #125
openAdd wordsize-64 subdir and make foo64 alias to foo
Status:
New
Priority:
Low
Assignee:
-
Start date:
2013-05-27
Due date:
% Done:
0%
Estimated time:
Description
Add wordsize-64 and make foo64 alias to foo.
See for example:
cat sysdeps/unix/sysv/linux/wordsize-64/statvfs.c #define __statvfs64(file, buf) __no_statvfs64(file, buf) #define statvfs64(file, buf) no_statvfs64(file, buf) #include "../statvfs.c" strong_alias (statvfs, __statvfs64) weak_alias (statvfs, statvfs64) cat sysdeps/unix/sysv/linux/wordsize-64/statvfs64.c /* statvfs64 is the same as statvfs. */
Actions