Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/libexec/rtld-elf/tests/libdeep/libdeep.c
34927 views
1
/*-
2
*
3
* Copyright (C) 2023 NetApp, Inc.
4
*
5
* SPDX-License-Identifier: BSD-2-Clause
6
*
7
*/
8
9
#include <stdio.h>
10
11
int get_value(void);
12
int proxy_get_value(void);
13
void set_value(int);
14
void proxy_set_value(int);
15
16
int
17
proxy_get_value(void)
18
{
19
20
return (get_value());
21
}
22
23
void
24
proxy_set_value(int val)
25
{
26
27
return (set_value(val));
28
}
29
30