From af2019888f9e9ace79a569c39892648849655e52 Mon Sep 17 00:00:00 2001 From: "bernard.xiong@gmail.com" Date: Thu, 21 Oct 2010 23:54:55 +0000 Subject: [PATCH] fix struct stat issue. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1026 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- src/kservice.c | 1 - src/module.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/kservice.c b/src/kservice.c index 9d7e35bdd..e5c93f105 100644 --- a/src/kservice.c +++ b/src/kservice.c @@ -985,7 +985,6 @@ size_t strlen(const char *s) __attribute__((weak, alias("rt_strlen"))); char *strstr(const char *s1,const char *s2) __attribute__((weak, alias("rt_strstr"))); int strcasecmp(const char *a, const char *b) __attribute__((weak, alias("rt_strcasecmp"))); char *strncpy(char *dest, const char *src, size_t n) __attribute__((weak, alias("rt_strncpy"))); -char *strcpy(char *dest, const char *src, size_t n) __attribute__((weak, alias("rt_strcpy"))); int strncmp(const char *cs, const char *ct, size_t count) __attribute__((weak, alias("rt_strncmp"))); #ifdef RT_USING_HEAP char *strdup(const char *s) __attribute__((weak, alias("rt_strdup"))); diff --git a/src/module.c b/src/module.c index 50e135305..d101c5b3b 100644 --- a/src/module.c +++ b/src/module.c @@ -369,7 +369,7 @@ rt_module_t rt_module_load_from_file(const rt_uint8_t* name, const char* filenam { int fd, length; struct rt_module* module; - struct _stat s; + struct stat s; char *buffer; stat(filename, &s);