features.h 160 B

12345
  1. #pragma once
  2. #define weak __attribute__((__weak__))
  3. #define weak_alias(old, new) \
  4. extern __typeof(old) new __attribute__((__weak__, __alias__(#old)))