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