Files
GarbageCanCenter_Woer_stm/STM32_4路称重_Git提交精简工程/gcc_build/gcc_compat.h
T

13 lines
187 B
C

#ifndef GCC_COMPAT_H
#define GCC_COMPAT_H
#ifndef __align
#define __align(n) __attribute__((aligned(n)))
#endif
#ifndef __packed
#define __packed __attribute__((packed))
#endif
#endif