Skip to content

Commit 784039b

Browse files
committed
fix: restore correct includes in main.c - use pow/trunc instead of powf/truncf
1 parent c6ca8b2 commit 784039b

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/truncbf/src

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/truncbf/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2025 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -50,4 +50,4 @@ float stdlib_base_truncbf( const float x, const int32_t n, const int32_t b ) {
5050

5151
// Multiply by scale, truncate (using truncf), then divide by scale
5252
return stdlib_base_truncf( x * s ) / s;
53-
}
53+
}

0 commit comments

Comments
 (0)