2015-04-14 18:42:28 +00:00
|
|
|
/*
|
2021-07-24 09:41:06 +00:00
|
|
|
* PROJECT: ReactOS CRT library
|
|
|
|
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
|
|
|
* PURPOSE: Implementation of __rt_sdiv
|
|
|
|
* COPYRIGHT: Copyright 2015 Timo Kreuzer <timo.kreuzer@reactos.org>
|
2021-07-31 01:04:25 +00:00
|
|
|
* Copyright 2021 Roman Masanin <36927roma@gmail.com>
|
2015-04-14 18:42:28 +00:00
|
|
|
*/
|
|
|
|
|
2021-07-31 01:04:25 +00:00
|
|
|
#define __rt_div_worker __rt_sdiv
|
2015-04-14 18:42:28 +00:00
|
|
|
#define _SIGNED_DIV_
|
|
|
|
|
|
|
|
#include "__rt_div_worker.h"
|
|
|
|
|
2021-07-31 01:04:25 +00:00
|
|
|
/* __rt_sdiv is implemented in __rt_div_worker.h */
|