mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 11:14:18 +01:00
13 lines
277 B
C
13 lines
277 B
C
|
/*-
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*
|
||
|
* Copyright (c) 2024 Mark Johnston <markj@FreeBSD.org>
|
||
|
*/
|
||
|
|
||
|
#ifndef _SYS_SDT_MACHDEP_H_
|
||
|
#define _SYS_SDT_MACHDEP_H_
|
||
|
|
||
|
#define _SDT_ASM_PATCH_INSTR ".option push; .option norvc; nop; .option pop"
|
||
|
|
||
|
#endif /* _SYS_SDT_MACHDEP_H_ */
|