Browse Source

fix struct stat issue.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1026 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong@gmail.com 14 years ago
parent
commit
af2019888f
2 changed files with 1 additions and 2 deletions
  1. 0 1
      src/kservice.c
  2. 1 1
      src/module.c

+ 0 - 1
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")));

+ 1 - 1
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);