fwupd/contrib/ci/out-of-tree-link/fwupdplugin.c
2021-08-24 11:18:40 -05:00

14 lines
212 B
C

/* SPDX-License-Identifier: LGPL-2.1+ */
#undef NDEBUG
#include <fwupdplugin.h>
#include <assert.h>
int
main(void)
{
assert(fu_common_vercmp_full("1.0", "2.1", FWUPD_VERSION_FORMAT_NUMBER) < 0);
return 0;
}