mirror of
https://github.com/opnsense/src.git
synced 2026-02-03 20:49:35 -05:00
This tests that with RTLD_DEEPBIND, symbols are looked up in all of the object's needed objects before the global object. PR: 275393 Reviewed by: kib Sponsored by: NetApp, Inc. Sponsored by: Klara, Inc. (cherry picked from commit d9c543b6b0cabea6e6679d70b4e701018e7eab80)
28 lines
327 B
C
28 lines
327 B
C
/*-
|
|
*
|
|
* 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));
|
|
}
|