mirror of
https://github.com/Fishwaldo/bl_mcu_sdk.git
synced 2025-07-13 00:08:33 +00:00
16 lines
223 B
C
16 lines
223 B
C
/*
|
|
* klibc/extern.h
|
|
*/
|
|
|
|
#ifndef _EXTERN_H
|
|
#define _EXTERN_H
|
|
|
|
#ifdef __cplusplus
|
|
#define __extern extern "C"
|
|
#else
|
|
#define __extern extern
|
|
#endif
|
|
|
|
#define __alias(x) __attribute__((weak, alias(x)))
|
|
|
|
#endif /* _EXTERN_H */
|