/
githubmirror
/
shim
Обзор
Документация
Войти
/
githubmirror
/
shim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
include/endian.h
21 строка
522 B
Peter Jones
Make 'make test' work on gcc 4.8.5
22 мар 2021, 23:43
22 мар 2021, 23:43
33db42d
Код
Авторство
О чём код?
// SPDX-License-Identifier: BSD-2-Clause-Patent /* * endian.h - bswap decls that can't go in compiler.h * Copyright Peter Jones <pjones@redhat.com> */ #ifdef SHIM_UNIT_TEST #include_next <endian.h> #endif #ifndef SHIM_ENDIAN_H_ #define SHIM_ENDIAN_H_ #include <stdint.h> #include "system/builtins_begin_.h" mkbi1_(uint16_t, bswap16, uint16_t, x) mkbi1_(uint32_t, bswap32, uint32_t, x) mkbi1_(uint64_t, bswap64, uint64_t, x) #include "system/builtins_end_.h" #endif /* !SHIM_ENDIAN_H_ */ // vim:fenc=utf-8:tw=75:noet