blob: c604a336a4557e6760e0fc43f649c5fe32b5afdc [file] [log] [blame] [edit]
/*
* Copyright 2024 Simon McVittie
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#include <sysprof-capture.h>
#undef _NDEBUG
#include <assert.h>
#ifdef __GNUC__
#define UNUSED __attribute__((__unused__))
#else
#define UNUSED
#endif
int
main (UNUSED int argc,
UNUSED char *argv[])
{
assert (sysprof_getpagesize () > 0);
return 0;
}