mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-09-13 14:22:19 +08:00
14 lines
241 B
C
14 lines
241 B
C
/*
|
|
* Simple program to test an installed Mbed TLS configuration.
|
|
*
|
|
* Copyright The Mbed TLS Contributors
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "mbedtls/build_info.h"
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|