You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ag...@apache.org on 2021/05/18 11:42:11 UTC

[incubator-nuttx-apps] branch master updated: ostest: Include errno.h in timedmutex.c

This is an automated email from the ASF dual-hosted git repository.

aguettouche pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new a6ca97d  ostest: Include errno.h in timedmutex.c
a6ca97d is described below

commit a6ca97d7334421ba4da31c3e2a4080b2c27ac629
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Tue May 18 00:53:15 2021 +0800

    ostest: Include errno.h in timedmutex.c
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 testing/ostest/timedmutex.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/testing/ostest/timedmutex.c b/testing/ostest/timedmutex.c
index 0863155..58bf568 100644
--- a/testing/ostest/timedmutex.c
+++ b/testing/ostest/timedmutex.c
@@ -37,10 +37,12 @@
  * Included Files
  ****************************************************************************/
 
+#include <errno.h>
 #include <stdbool.h>
 #include <stdio.h>
 #include <pthread.h>
 #include <time.h>
+
 #include "ostest.h"
 
 /****************************************************************************