Skip to content

Commit

Permalink
fix: missing headers in math/base/fast/pow-int and math/base/special/…
Browse files Browse the repository at this point in the history
…bernoulli

This commit adds the missing headers in the respective packages.
  • Loading branch information
performant23 committed Mar 19, 2024
1 parent c0993fa commit 1229eaf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include "stdlib/math/base/special/bernoulli.h"
#include <stdio.h>
#include <stdint.h>

int main( void ) {
int32_t i;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ double stdlib_base_fast_pow( const double x, const int32_t y );
#include "stdlib/math/base/special/fast/pow.h"
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
int main( void ) {
const double x[] = { 3.14, 2.0, 2.0, 0.0 };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include "stdlib/math/base/special/fast/pow.h"
#include <stdio.h>
#include <stdint.h>

int main( void ) {
const double x[] = { 3.14, 2.0, 2.0, 0.0 };
Expand Down

0 comments on commit 1229eaf

Please sign in to comment.