aboutsummaryrefslogtreecommitdiff
path: root/libexec/rtld-elf/tests/libdeep/libdeep.c
blob: e570769300cffcec856449cd9f66f9cba84c4459 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*-
 *
 * Copyright (C) 2023 NetApp, Inc.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 *
 */

#include <stdio.h>

int get_value(void);
int proxy_get_value(void);
void set_value(int);
void proxy_set_value(int);

int
proxy_get_value(void)
{

	return (get_value());
}

void
proxy_set_value(int val)
{

	return (set_value(val));
}