mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-04 15:46:15 +00:00

Based on a patch from Simon McVittie on https://salsa.debian.org/efi-team/fwupd/-/merge_requests/4 Suggested-by: Simon McVittie <smcv@debian.org>
11 lines
179 B
C
11 lines
179 B
C
#undef NDEBUG
|
|
#include <assert.h>
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
int main (void)
|
|
{
|
|
assert (fu_common_vercmp_full ("1.0", "2.1", FWUPD_VERSION_FORMAT_NUMBER) < 0);
|
|
return 0;
|
|
}
|