xref: /optee_os/lib/libutils/ext/arch/arm/auxval.c (revision 9f34db38245c9b3a4e6e7e63eb78a75e23ab2da3)
1 // SPDX-License-Identifier: BSD-2-Clause
2 /*
3  * Copyright (c) 2020, EPAM Systems
4  */
5 
6 #include <compiler.h>
7 
8 unsigned long int __getauxval (unsigned long int type);
9 unsigned long int __getauxval (unsigned long int type __unused)
10 {
11 	return 0;
12 }
13