Pārlūkot izejas kodu

avoid to conflicting types for 'uint32_t' error.
already uint32_t is defined at components/libc/compilers/minilibc/stdint.h.

there is two ways to solve, using <stdint.h>/uint32_t pair or
<rtthread.h>/rt_uint32_t pair.

I choose former because this code belongs to C compiler, not RT-Thread system.

SASANO Takayoshi 6 gadi atpakaļ
vecāks
revīzija
54f23a4293
2 mainītis faili ar 2 papildinājumiem un 8 dzēšanām
  1. 1 4
      libcpu/ia32/__udivsi3.c
  2. 1 4
      libcpu/ia32/__umodsi3.c

+ 1 - 4
libcpu/ia32/__udivsi3.c

@@ -12,10 +12,7 @@
  * 2006-10-09     Bernard      the first version for i386
  */
 
-#include <rtthread.h>
-
-typedef rt_uint32_t uint32_t;
-typedef rt_int32_t int32_t;
+#include <stdint.h>
 
 uint32_t __udivsi3(uint32_t num, uint32_t den)
 {

+ 1 - 4
libcpu/ia32/__umodsi3.c

@@ -12,10 +12,7 @@
  * 2006-10-09     Bernard      the first version for i386
  */
 
-#include <rtthread.h>
-
-typedef rt_uint32_t uint32_t;
-typedef rt_int32_t int32_t;
+#include <stdint.h>
 
 uint32_t __umodsi3(uint32_t num, uint32_t den)
 {