blob: 07d5da4275fdc44d833da3279bc4c0f50eff632e [file] [log] [blame]
Gilles Peskinea0ebaef2021-05-24 23:17:57 +02001/* threading_alt.h with dummy types for MBEDTLS_THREADING_ALT */
2/*
3 * Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +00004 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Gilles Peskinea0ebaef2021-05-24 23:17:57 +02005 */
6
7#ifndef THREADING_ALT_H
8#define THREADING_ALT_H
9
Gilles Peskine449bd832023-01-11 14:50:10 +010010typedef struct mbedtls_threading_mutex_t {
Gilles Peskinea0ebaef2021-05-24 23:17:57 +020011 int dummy;
12} mbedtls_threading_mutex_t;
13
14#endif /* threading_alt.h */