mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
got rid of a write system call
git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@39 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
This commit is contained in:
@ -165,7 +165,7 @@ void bi_permanent(bigint *bi)
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Take a permanent object and make it elligible for freedom.
|
||||
* @brief Take a permanent object and make it eligible for freedom.
|
||||
* @param bi [in] The bigint to be made back to temporary.
|
||||
*/
|
||||
void bi_depermanent(bigint *bi)
|
||||
@ -243,7 +243,7 @@ bigint *bi_clone(BI_CTX *ctx, const bigint *bi)
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Perform an additon operation between two bigints.
|
||||
* @brief Perform an addition operation between two bigints.
|
||||
* @param ctx [in] The bigint session context.
|
||||
* @param bia [in] A bigint.
|
||||
* @param bib [in] Another bigint.
|
||||
@ -1038,7 +1038,7 @@ static void more_comps(bigint *bi, int n)
|
||||
|
||||
/*
|
||||
* Make a new empty bigint. It may just use an old one if one is available.
|
||||
* Otherwise get one of the heap.
|
||||
* Otherwise get one off the heap.
|
||||
*/
|
||||
static bigint *alloc(BI_CTX *ctx, int size)
|
||||
{
|
||||
|
Reference in New Issue
Block a user