blob: 8794d8281bcf57496993c8804c1d880cf60b0fd5 [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
#ifndef OPENTITAN_SW_DEVICE_LIB_BASE_STDASM_H_
#define OPENTITAN_SW_DEVICE_LIB_BASE_STDASM_H_
/**
* This header simply provides the |asm| keyword, in analogy with the ISO C
* headers |stdbool.h|, |stdnoreturn.h|, and so on.
*/
#define asm __asm__
#endif // OPENTITAN_SW_DEVICE_LIB_BASE_STDASM_H_