Skip to content

Commit 2bfe9f5

Browse files
committed
fix: rename pow.h to pow_int.h to match package name
Signed-off-by: zaid <mz1944680@gmail.com>
1 parent 1596184 commit 2bfe9f5

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

lib/node_modules/@stdlib/math/base/special/fast/pow-int/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ for ( y = 0; y < 309; y++ ) {
161161
### Usage
162162

163163
```c
164-
#include "stdlib/math/base/special/fast/pow.h"
164+
#include "stdlib/math/base/special/fast/pow_int.h"
165165
```
166166

167167
#### stdlib_base_fast_pow( x, y )
@@ -204,7 +204,7 @@ double stdlib_base_fast_pow( const double x, const int32_t y );
204204
### Examples
205205
206206
```c
207-
#include "stdlib/math/base/special/fast/pow.h"
207+
#include "stdlib/math/base/special/fast/pow_int.h"
208208
#include <stdlib.h>
209209
#include <stdio.h>
210210
#include <stdint.h>

lib/node_modules/@stdlib/math/base/special/fast/pow-int/include/stdlib/math/base/special/fast/pow.h renamed to lib/node_modules/@stdlib/math/base/special/fast/pow-int/include/stdlib/math/base/special/fast/pow_int.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19-
#ifndef STDLIB_MATH_BASE_SPECIAL_FAST_POW_H
20-
#define STDLIB_MATH_BASE_SPECIAL_FAST_POW_H
19+
#ifndef STDLIB_MATH_BASE_SPECIAL_FAST_POW_INT_H
20+
#define STDLIB_MATH_BASE_SPECIAL_FAST_POW_INT_H
2121

2222
#include <stdint.h>
2323

@@ -37,4 +37,4 @@ double stdlib_base_fast_pow( const double x, const int32_t y );
3737
}
3838
#endif
3939

40-
#endif // !STDLIB_MATH_BASE_SPECIAL_FAST_POW_H
40+
#endif // !STDLIB_MATH_BASE_SPECIAL_FAST_POW_INT_H

lib/node_modules/@stdlib/math/base/special/fast/pow-int/src/addon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include "stdlib/math/base/special/fast/pow.h"
19+
#include "stdlib/math/base/special/fast/pow_int.h"
2020
#include "stdlib/math/base/napi/binary.h"
2121

2222
STDLIB_MATH_BASE_NAPI_MODULE_DI_D( stdlib_base_fast_pow )

lib/node_modules/@stdlib/math/base/special/fast/pow-int/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include "stdlib/math/base/special/fast/pow.h"
19+
#include "stdlib/math/base/special/fast/pow_int.h"
2020
#include "stdlib/math/base/assert/is_nan.h"
2121
#include "stdlib/constants/float64/pinf.h"
2222

0 commit comments

Comments
 (0)