1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Fix missing void argument declarations #678

This commit is contained in:
Joris Aerts
2016-11-04 23:05:56 +01:00
parent 9e655d33f9
commit e75b88db49
2 changed files with 7 additions and 7 deletions

View File

@ -30,7 +30,7 @@
#include "mbedtls/version.h"
#include <string.h>
unsigned int mbedtls_version_get_number()
unsigned int mbedtls_version_get_number( void )
{
return( MBEDTLS_VERSION_NUMBER );
}