aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/bigint/divide.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/bigint/divide.h')
-rw-r--r--src/math/bigint/divide.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/math/bigint/divide.h b/src/math/bigint/divide.h
deleted file mode 100644
index 36aed7854..000000000
--- a/src/math/bigint/divide.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
-* Division
-* (C) 1999-2007 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#ifndef BOTAN_DIVISON_ALGORITHM_H__
-#define BOTAN_DIVISON_ALGORITHM_H__
-
-#include <botan/bigint.h>
-
-namespace Botan {
-
-/**
-* BigInt Division
-* @param x an integer
-* @param y a non-zero integer
-* @param q will be set to x / y
-* @param r will be set to x % y
-*/
-void BOTAN_DLL divide(const BigInt& x,
- const BigInt& y,
- BigInt& q,
- BigInt& r);
-
-}
-
-#endif