mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-07-15 07:00:04 +00:00
22 lines
522 B
C
22 lines
522 B
C
// 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
|