diff options
| -rwxr-xr-x | src/wrapped/wrappedlibc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c index a257cc07..f0b7933e 100755 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -1269,8 +1269,6 @@ EXPORT ssize_t my_readlink(x64emu_t* emu, void* path, void* buf, size_t sz) return readlink((const char*)path, (char*)buf, sz); } -#ifndef NOALIGN - static int nCPU = 0; static double bogoMips = 100.; @@ -1303,6 +1301,9 @@ int getNCpu() grabNCpu(); return nCPU; } +#ifndef NOALIGN + + void CreateCPUInfoFile(int fd) { size_t dummy; |