Skip to content

Commit 25294a3

Browse files
committed
Rename header file
1 parent 92899c7 commit 25294a3

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/node_modules/@stdlib/math/base/assert/is-positive-zero/benchmark/c/native/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <stdbool.h>
77
#include <math.h>
88
#include <sys/time.h>
9-
#include "is_positive_zero.h"
9+
#include "stdlib_base_is_positive_zero.h"
1010

1111
#define NAME "is-positive-zero"
1212
#define ITERATIONS 1000000

lib/node_modules/@stdlib/math/base/assert/is-positive-zero/include/is_positive_zero.h renamed to lib/node_modules/@stdlib/math/base/assert/is-positive-zero/include/stdlib_base_is_positive_zero.h

File renamed without changes.

lib/node_modules/@stdlib/math/base/assert/is-positive-zero/src/addon.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Test if a numeric value is positive zero.
33
*/
44
#include <nan.h>
5-
#include "is_positive_zero.h"
5+
#include "stdlib_base_is_positive_zero.h"
66

77
/**
88
* Add-on namespace.

lib/node_modules/@stdlib/math/base/assert/is-positive-zero/src/is_positive_zero.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Test if a numeric value is positive zero.
33
*/
4-
#include "is_positive_zero.h"
4+
#include "stdlib_base_is_positive_zero.h"
55
#include <stdbool.h>
66
#include <math.h>
77

0 commit comments

Comments
 (0)