mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-01 07:12:47 +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
612 B
C
Vendored
21 lines
612 B
C
Vendored
/* $OpenBSD: cdefs.h,v 1.1 2020/05/16 17:11:14 kettenis 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_ */ |