/
githubmirror
/
libsmbios
Обзор
Документация
Войти
/
githubmirror
/
libsmbios
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/libsmbios_c/common/platform/linux.h
15 строк
391 B
Michael E Brown
fixup largefile issues on RHEL4 (fseeko was not being defined.
31 окт 2008, 01:18
31 окт 2008, 01:18
839fc58
Код
Авторство
О чём код?
// If we are on IA64 we will need to macro define inb_p and outb_p #if defined(__ia64__) # define outb_p outb # define inb_p inb #endif // required for compile on RHEL4. fseeko not defined unless we use this #ifndef _LARGEFILE_SOURCE #define _LARGEFILE_SOURCE #endif // Enable 64-bit file access #ifndef FSEEK #define FSEEK(fh, pos, whence) fseeko(fh, (off_t)(pos), whence) #endif