STORAGE: moved toolchain_support.h into platform/retarget.h

pull/3762/head
Simon Hughes 2017-02-06 19:33:11 +00:00
parent c877fb6287
commit fdadb8cc66
5 changed files with 6 additions and 6 deletions

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -31,7 +31,7 @@
#include <stdio.h>
#endif
#include <errno.h>
#include "toolchain_support.h"
#include "platform/retarget.h"
#if defined(__ARMCC_VERSION)