Skip to content

Commit 1889c26

Browse files
fix: gyp errors
1 parent 817f30a commit 1889c26

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/number/float32/base/signbit

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/number/float32/base/signbit/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <inttypes.h>
2323

2424
int main( void ) {
25-
float x[] = { 3.14f, -3.14f, 0.0f, -0.0f, 4.0f, 1.0f, -1.0f, 1.0e308f, -1.0e308f };
25+
const float x[] = { 3.14f, -3.14f, 0.0f, -0.0f, 4.0f, 1.0f, -1.0f, 1.0e308f, -1.0e308f };
2626

2727
int8_t out;
2828
int i;

lib/node_modules/@stdlib/number/float32/base/signbit/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "stdlib/number/float32/base/signbit.h"
20-
#include "stdlib/number/float32/base/to-word.h"
20+
#include "stdlib/number/float32/base/to_word.h"
2121
#include <stdint.h>
2222

2323
/**

0 commit comments

Comments
 (0)