Skip to content

Commit

Permalink
Checking if GCC is enough and is compliant.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfpf committed Sep 26, 2023
1 parent b09e9a3 commit 853ea86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- uses: actions/checkout@v4
- uses: cygwin/cygwin-install-action@v4
with:
packages: cmake gcc-g++ make git python3 python3-devel python3-pip
packages: cmake gcc make git python3 python3-devel python3-pip
- run: python3 -m pip install .
- run: python3 examples/Python/thread-safe.py
2 changes: 1 addition & 1 deletion lib/hdrbg.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ static int long long unsigned
#endif
seq_num = 0;

#if !(defined __STDC_NO_THREADS__ || defined _WIN32)
#ifndef __STDC_NO_THREADS__
#include <threads.h>
static thread_local enum hdrbg_err_t
#else
Expand Down

0 comments on commit 853ea86

Please sign in to comment.