From b5add19b0e6d25ff6b6d64d09aa7a52ea01d857c Mon Sep 17 00:00:00 2001 From: pangwei <271372443@qq.com> Date: Thu, 21 May 2015 09:18:05 +0800 Subject: [PATCH] [components] add definition of mode_t for armlibc. --- components/libc/armlibc/sys/types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/libc/armlibc/sys/types.h b/components/libc/armlibc/sys/types.h index b01d8283d4..3074bd69d0 100644 --- a/components/libc/armlibc/sys/types.h +++ b/components/libc/armlibc/sys/types.h @@ -9,4 +9,6 @@ typedef rt_int32_t key_t; /* Used for interprocess communication. */ typedef rt_int32_t pid_t; /* Used for process IDs and process group IDs. */ typedef signed long ssize_t; /* Used for a count of bytes or an error indication. */ +typedef int mode_t; + #endif