summaryrefslogtreecommitdiff
path: root/src/libbiguint/bu_slbc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libbiguint/bu_slbc.c')
-rw-r--r--src/libbiguint/bu_slbc.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/libbiguint/bu_slbc.c b/src/libbiguint/bu_slbc.c
deleted file mode 100644
index 13d9b6d..0000000
--- a/src/libbiguint/bu_slbc.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* ISC license. */
-
-#include <skalibs/biguint.h>
-
-int bu_slbc (uint32_t *a, unsigned int n, int carry)
-{
- unsigned int i = 0 ;
- carry = !!carry ;
- for (; i < n ; i++)
- {
- int c = a[i] >> 31 ;
- a[i] = (a[i] << 1) | carry ;
- carry = c ;
- }
- return carry ;
-}