Files
rk35xx-android14/external/libabigail/tests/data/test-abicompat/test0-fn-changed-app.cc
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

19 lines
328 B
C++

// Compile with:
// g++ -g -Wall -o test0-fn-changed-app -L. -ltest0-fn-changed-libapp-v0 test0-fn-changed-app.cc
//
#include "test0-fn-changed-libapp.h"
int
main()
{
libapp::S0* s0 = libapp::create_s0();
libapp::S1* s1 = libapp::create_s1();
fun0(*s0);
fun1(s1);
libapp::destroy(s0);
libapp::destroy(s1);
}