summaryrefslogtreecommitdiff
path: root/src/libbiguint/bu_srbc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libbiguint/bu_srbc.c')
-rw-r--r--src/libbiguint/bu_srbc.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/libbiguint/bu_srbc.c b/src/libbiguint/bu_srbc.c
deleted file mode 100644
index b23186b..0000000
--- a/src/libbiguint/bu_srbc.c
+++ /dev/null
@@ -1,14 +0,0 @@
-/* ISC license. */
-
-#include <skalibs/biguint.h>
-
-int bu_srbc (uint32_t *a, unsigned int n, int carry)
-{
- while (n--)
- {
- int c = a[n] & 1 ;
- a[n] = (a[n] >> 1) | (carry ? 0x80000000U : 0) ;
- carry = c ;
- }
- return carry ;
-}