mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
30 lines
329 B
C
30 lines
329 B
C
#ifdef __GNUC__
|
|
|
|
/* Nothing to do here. */
|
|
;
|
|
#endif
|
|
|
|
/* Used by SH2A port. */
|
|
#ifdef _SH
|
|
#ifdef __RENESAS__
|
|
#pragma pack 1
|
|
#endif
|
|
#endif
|
|
|
|
|
|
#ifdef __RX
|
|
#ifdef __RENESAS__
|
|
/* Nothing to do. */
|
|
#endif
|
|
#endif
|
|
|
|
|
|
#ifdef __ICCRX__
|
|
#pragma pack(1)
|
|
#endif
|
|
|
|
|
|
#ifdef __ICCARM__
|
|
#pragma pack(1)
|
|
#endif
|