Skip to content

Commit

Permalink
[ISSUE-0099]: fix compilation with -UUSE_STD_TYPES
Browse files Browse the repository at this point in the history
  • Loading branch information
SzigetiJ committed Feb 8, 2024
1 parent ac331cc commit 2f91afe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/sinxaprx128.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include "bigdecimal128.h"
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>

// Writes bigdecimal to out with accompanying message
Expand Down
2 changes: 2 additions & 0 deletions tests/performance/add_uperf.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include <time.h>
#include "uint.h"
Expand Down
1 change: 1 addition & 0 deletions tests/performance/perf_common.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#ifndef PERF_COMMON_H
#define PERF_COMMON_H
#include <stdint.h>
#include <stdbool.h>
#include "uint_types.h"

Expand Down

0 comments on commit 2f91afe

Please sign in to comment.