mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
Reproduces: https://gitlab.gnome.org/GNOME/sysprof/-/issues/114 Signed-off-by: Simon McVittie <smcv@debian.org>
18 lines
283 B
C++
18 lines
283 B
C++
/*
|
|
* Copyright 2024 Simon McVittie
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#include <sysprof.h>
|
|
|
|
#undef _NDEBUG
|
|
#include <assert.h>
|
|
|
|
int
|
|
main (G_GNUC_UNUSED int argc,
|
|
G_GNUC_UNUSED char *argv[])
|
|
{
|
|
assert (sysprof_callgraph_flags_get_type () != 0);
|
|
return 0;
|
|
}
|