[CRT/arm] Update file headers to new format and change license to MIT

* Add Raman Masanin to copyrights
* Add some comments
* Return long long from __rt_sdiv (no functional difference, just for clarity)
This commit is contained in:
Timo Kreuzer 2021-07-24 11:41:06 +02:00
parent 9a42267b06
commit f1e2c6cbd0
6 changed files with 55 additions and 158 deletions

View file

@ -1,8 +1,9 @@
/*
* COPYRIGHT: BSD - See COPYING.ARM in the top level directory
* PROJECT: ReactOS CRT library
* PURPOSE: Implementation of __rt_sdiv64
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
* PROJECT: ReactOS CRT library
* LICENSE: MIT (https://spdx.org/licenses/MIT)
* PURPOSE: Implementation of __rt_sdiv64
* COPYRIGHT: Copyright 2015 Timo Kreuzer <timo.kreuzer@reactos.org>
* Copyright 2021 Raman Masanin <36927roma@gmail.com>
*/
/* INCLUDES ******************************************************************/
@ -15,6 +16,12 @@
TEXTAREA
/*
IN: r1:r0 = divisor
IN: r3:r2 = dividend
OUT: r1:r0 = quotient
OUT: r3:r2 = remainder
*/
NESTED_ENTRY __rt_sdiv64
/* Allocate stack space and store parameters there */