Refine MBED_CONF_RTOS_PRESENT check in crypto_misc.cpp

pull/9370/head
ccli8 2019-01-03 09:21:05 +08:00 committed by adbridge
parent 8eef60421f
commit 3e94b86a78
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
#include "mbed_assert.h"
#include "mbed_critical.h"
#include "mbed_error.h"
#if defined(MBED_CONF_RTOS_PRESENT) && MBED_CONF_RTOS_PRESENT
#if MBED_CONF_RTOS_PRESENT
#include "cmsis_os2.h"
#endif
#include <string.h>

View File

@ -19,7 +19,7 @@
#include "mbed_assert.h"
#include "mbed_critical.h"
#include "mbed_error.h"
#if defined(MBED_CONF_RTOS_PRESENT) && MBED_CONF_RTOS_PRESENT
#if MBED_CONF_RTOS_PRESENT
#include "cmsis_os2.h"
#endif
#include <string.h>