mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-02 14:15:56 +00:00
14 lines
212 B
C
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;
|
|
}
|