Skip to content

Commit c28a849

Browse files
authored
Merge pull request #481 from RektInator/develop
fixed compile issue on msvc++
2 parents e8afa13 + 596e9a6 commit c28a849

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/headers/tomcrypt_argchk.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
#include <signal.h>
1717

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

0 commit comments

Comments
 (0)