mirror of
https://github.com/ziglang/zig.git
synced 2025-12-23 06:33:08 +00:00
12 lines
280 B
C
Vendored
12 lines
280 B
C
Vendored
#ifndef FEATURES_H
|
|
#define FEATURES_H
|
|
|
|
#include "../../include/features.h"
|
|
|
|
#define weak __attribute__((__weak__))
|
|
#define hidden __attribute__((__visibility__("hidden")))
|
|
#define weak_alias(old, new) \
|
|
extern __typeof(old) new __attribute__((__weak__, __alias__(#old)))
|
|
|
|
#endif
|