mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-04 00:32:40 +03:00
66d97267c7
This excludes all headers in /usr/include/dev because that directory is bonkers huge (18M). We can add these on an as-needed basis.
21 lines
605 B
C
Vendored
21 lines
605 B
C
Vendored
/* $OpenBSD: cdefs.h,v 1.10 2013/03/28 17:30:45 martynas Exp $ */
|
|
|
|
/*
|
|
* Written by J.T. Conklin <jtc@wimsey.com> 01/17/95.
|
|
* Public domain.
|
|
*/
|
|
|
|
#ifndef _MACHINE_CDEFS_H_
|
|
#define _MACHINE_CDEFS_H_
|
|
|
|
#define __strong_alias(alias,sym) \
|
|
__asm__(".global " __STRING(alias) " ; " \
|
|
__STRING(alias) " = " __STRING(sym))
|
|
#define __weak_alias(alias,sym) \
|
|
__asm__(".weak " __STRING(alias) " ; " \
|
|
__STRING(alias) " = " __STRING(sym))
|
|
#define __warn_references(sym,msg) \
|
|
__asm__(".section .gnu.warning." __STRING(sym) \
|
|
" ; .ascii \"" msg "\" ; .text")
|
|
|
|
#endif /* !_MACHINE_CDEFS_H_ */ |