Skip to content

Commit

Permalink
Merge pull request #481 from RektInator/develop
Browse files Browse the repository at this point in the history
fixed compile issue on msvc++
  • Loading branch information
sjaeckel committed May 8, 2019
2 parents e8afa13 + 596e9a6 commit c28a849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/headers/tomcrypt_argchk.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#include <signal.h>

void crypt_argchk(const char *v, const char *s, int d) LTC_NORETURN;
LTC_NORETURN void crypt_argchk(const char *v, const char *s, int d);
#define LTC_ARGCHK(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)
#define LTC_ARGCHKVD(x) do { if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } }while(0)

Expand Down

0 comments on commit c28a849

Please sign in to comment.