aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-29 18:38:35 +0000
committerlloyd <[email protected]>2008-09-29 18:38:35 +0000
commite93928c2dd980b54dcf560fc3153ab5fed2d5881 (patch)
treeebbb68d9ffb7127f7b33205c72b5603e56296ace /src
parente63769278a2be5c2b36007885fb16d2c91e4c3e4 (diff)
Add missing divide.h
Diffstat (limited to 'src')
-rw-r--r--src/bigint/divide.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/bigint/divide.h b/src/bigint/divide.h
new file mode 100644
index 000000000..d0de3da75
--- /dev/null
+++ b/src/bigint/divide.h
@@ -0,0 +1,17 @@
+/*************************************************
+* Division Header File *
+* (C) 1999-2007 Jack Lloyd *
+*************************************************/
+
+#ifndef BOTAN_DIVISON_ALGORITHM__
+#define BOTAN_DIVISON_ALGORITHM__
+
+#include <botan/bigint.h>
+
+namespace Botan {
+
+void BOTAN_DLL divide(const BigInt&, const BigInt&, BigInt&, BigInt&);
+
+}
+
+#endif