mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-11 02:40:01 +01:00
8 lines
150 B
C
8 lines
150 B
C
#include <string.h>
|
|
|
|
extern int tpm2_find_device_auto(int log_level, char **ret) {
|
|
(void) log_level;
|
|
*ret = strdup(TPM_PATH);
|
|
return 0;
|
|
}
|