From a9a2fddbf2a93b8427478954d4efe9e02080454f Mon Sep 17 00:00:00 2001 From: Paul Koning Date: Thu, 18 Oct 2018 14:01:15 -0400 Subject: udivmodsi4.c (__udivmodsi4): Rename to conform to coding standard. * udivmodsi4.c (__udivmodsi4): Rename to conform to coding standard. * divmod.c: Update references to __udivmodsi4. * udivmod.c: Ditto. * udivhi3.c: New file. * udivmodhi4.c: New file. * config/pdp11/t-pdp11 (LIB2ADD): Add the new files. From-SVN: r265277 --- libgcc/udivmodsi4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgcc/udivmodsi4.c') diff --git a/libgcc/udivmodsi4.c b/libgcc/udivmodsi4.c index 69e0349..b7dabb1 100644 --- a/libgcc/udivmodsi4.c +++ b/libgcc/udivmodsi4.c @@ -22,7 +22,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see . */ unsigned long -udivmodsi4(unsigned long num, unsigned long den, int modwanted) +__udivmodsi4(unsigned long num, unsigned long den, int modwanted) { unsigned long bit = 1; unsigned long res = 0; -- cgit v1.1