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