mirror of
https://git.sr.ht/~nabijaczleweli/tzpfms
synced 2025-05-29 22:09:14 +03:00
13 lines
234 B
C++
13 lines
234 B
C++
/* SPDX-License-Identifier: MIT */
|
|
|
|
|
|
#include "../main_clear.hpp"
|
|
|
|
|
|
#define THIS_BACKEND "TPM1.X"
|
|
|
|
|
|
int main(int argc, char ** argv) {
|
|
return do_clear_main(argc, argv, THIS_BACKEND, [](auto, auto) { return 0; }, [] { return 0; });
|
|
}
|