diff options
author | Stefan Krah <skrah@bytereef.org> | 2020-06-05 17:43:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-05 17:43:01 (GMT) |
commit | 087d612efebe7c64e5f079b07e0454111859830e (patch) | |
tree | 9101b04c780e36ef3ae594efe662dff179fbf9ed /Modules/_decimal/libmpdec/sixstep.c | |
parent | 3ad52e366fea37b02a3f619e6b7cffa7dfbdfa2e (diff) | |
download | cpython-087d612efebe7c64e5f079b07e0454111859830e.zip cpython-087d612efebe7c64e5f079b07e0454111859830e.tar.gz cpython-087d612efebe7c64e5f079b07e0454111859830e.tar.bz2 |
bpo-40874: Update to libmpdec-2.5.0 (GH-20652)
Diffstat (limited to 'Modules/_decimal/libmpdec/sixstep.c')
-rw-r--r-- | Modules/_decimal/libmpdec/sixstep.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/_decimal/libmpdec/sixstep.c b/Modules/_decimal/libmpdec/sixstep.c index 92d513e..a4d1dbe 100644 --- a/Modules/_decimal/libmpdec/sixstep.c +++ b/Modules/_decimal/libmpdec/sixstep.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2016 Stefan Krah. All rights reserved. + * Copyright (c) 2008-2020 Stefan Krah. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -27,15 +27,17 @@ #include "mpdecimal.h" -#include <stdio.h> -#include <stdlib.h> + #include <assert.h> +#include <stdio.h> + #include "bits.h" +#include "constants.h" #include "difradix2.h" #include "numbertheory.h" +#include "sixstep.h" #include "transpose.h" #include "umodarith.h" -#include "sixstep.h" /* Bignum: Cache efficient Matrix Fourier Transform for arrays of the @@ -210,5 +212,3 @@ inv_six_step_fnt(mpd_uint_t *a, mpd_size_t n, int modnum) return 1; } - - |