xref: /aosp_15_r20/external/ltp/testcases/lib/tst_secureboot_enabled.c (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2023 Petr Vorel <[email protected]>
4  */
5 
6 #define TST_NO_DEFAULT_MAIN
7 #include "tst_test.h"
8 
main(void)9 int main(void)
10 {
11 	return tst_secureboot_enabled() <= 0;
12 }
13