1 /* 2 * COPYRIGHT: BSD - See COPYING.ARM in the top level directory 3 * PROJECT: ReactOS CRT library 4 * FILE: lib/sdk/crt/math/arm/__rt_sdiv64_worker.c 5 * PURPOSE: Implementation of __rt_sdiv_worker 6 * PROGRAMMER: Timo Kreuzer 7 * REFERENCE: http://research.microsoft.com/en-us/um/redmond/projects/invisible/src/crt/md/arm/_div10.s.htm 8 * http://research.microsoft.com/en-us/um/redmond/projects/invisible/src/crt/md/arm/_udiv.c.htm 9 */ 10 11 #define __rt_div_worker __rt_sdiv64_worker 12 #define _SIGNED_DIV_ 13 #define _USE_64_BITS_ 14 15 #include "__rt_div_worker.h" 16 17 /* __rt_sdiv64 is implemented in __rt_sdiv64.s */ 18