this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fstream sFILE/IO_FILE workaround not doable on x86, omitting

+8
+8
src/libSystem/libc/stdio.cpp
··· 405 405 return pThis->sys_open(f->linux_fp, mode); 406 406 } 407 407 408 + #ifdef __x86_64__ 409 + 408 410 extern "C" void _ZN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEC1EP8_IO_FILESt13_Ios_Openmodem(__gnu_cxx::stdio_filebuf<char, std::char_traits<char> >* pThis, FILE* f, std::_Ios_Openmode m, unsigned long l); 409 411 void _ZN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEC1EP7__sFILESt13_Ios_Openmodem(__gnu_cxx::stdio_filebuf<char, std::char_traits<char> >* pThis, __darwin_FILE* f, std::_Ios_Openmode m, unsigned long l) 410 412 { 411 413 _ZN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEC1EP8_IO_FILESt13_Ios_Openmodem(pThis, f->linux_fp, m, l); 412 414 } 413 415 416 + #elif defined(__i386__) 417 + 418 + // TODO: x86 419 + 420 + #endif 421 +