mirror of https://github.com/ARMmbed/mbed-os.git
STORAGE: moved toolchain_support.h into platform/retarget.h
parent
c877fb6287
commit
fdadb8cc66
|
@ -59,9 +59,9 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
/* toolchain_support.h is included after errno.h so symbols are mapped to
|
||||
/* retarget.h is included after errno.h so symbols are mapped to
|
||||
* consistent values for all toolchains */
|
||||
#include "toolchain_support.h"
|
||||
#include "platform/retarget.h"
|
||||
|
||||
using namespace utest::v1;
|
||||
|
||||
|
|
|
@ -35,9 +35,9 @@
|
|||
#include <stdlib.h> /*rand()*/
|
||||
#include <inttypes.h>
|
||||
#include <errno.h>
|
||||
/* toolchain_support.h is included after errno.h so symbols are mapped to
|
||||
/* retarget.h is included after errno.h so symbols are mapped to
|
||||
* consistent values for all toolchains */
|
||||
#include "toolchain_support.h"
|
||||
#include "platform/retarget.h"
|
||||
|
||||
/* This is needed for stat() test, but is not available on ARMCC */
|
||||
#ifdef TOOLCHAIN_GCC
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
#include "FATMisc.h"
|
||||
#include <errno.h>
|
||||
#include "toolchain_support.h"
|
||||
#include "platform/retarget.h"
|
||||
|
||||
|
||||
/* @brief Set errno based on the error code returned from underlying filesystem
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <stdio.h>
|
||||
#endif
|
||||
#include <errno.h>
|
||||
#include "toolchain_support.h"
|
||||
#include "platform/retarget.h"
|
||||
|
||||
|
||||
#if defined(__ARMCC_VERSION)
|
||||
|
|
Loading…
Reference in New Issue