This repository has been archived on 2026-02-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
can/Inc/mmr_can_optimize.h
T
Stefano Calabretti 3cdd6da051 First commit
2021-11-28 12:12:27 +01:00

11 lines
213 B
C

#ifndef INC_MMR_CAN_OPTIMIZE_H_
#define INC_MMR_CAN_OPTIMIZE_H_
#ifdef __GNUC__
#define always_inline inline __attribute__((always_inline))
#else
#define always_inline inline
#endif
#endif /* INC_OPTIMIZE_H_ */