From cb2306c085026c3e80b57f87df5b80d5901ca209 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Mon, 14 Aug 2017 17:32:08 -0500 Subject: [PATCH] retarget: Added ENODEV to error codes --- platform/mbed_retarget.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/platform/mbed_retarget.h b/platform/mbed_retarget.h index 85c89fe3de..90d19fb094 100644 --- a/platform/mbed_retarget.h +++ b/platform/mbed_retarget.h @@ -120,6 +120,9 @@ extern "C" { #undef EXDEV #define EXDEV 18 /* Cross-device link */ +#undef ENODEV +#define ENODEV 19 + #undef EINVAL #define EINVAL 22 /* Invalid argument */