소스 검색

[OFW] Delete redundant strcasecmp function

wumingzi 8 달 전
부모
커밋
c1166e0bf1
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      components/drivers/ofw/base.c

+ 0 - 2
components/drivers/ofw/base.c

@@ -333,8 +333,6 @@ static int ofw_prop_index_of_string(struct rt_ofw_prop *prop, const char *string
 
 static rt_int32_t ofw_strcasecmp(const char *cs, const char *ct)
 {
-    extern rt_int32_t strcasecmp(const char *cs, const char *ct);
-
     return rt_strcasecmp(cs, ct);
 }