Previous fix was out by one version tag.

memalign must have been added with FreeBSD 12.2
This commit is contained in:
Paul Floyd 2021-10-12 23:04:52 +02:00
parent 970820852e
commit 5675b90cc0

View File

@ -31,7 +31,7 @@ int main ( void )
int res;
assert(sizeof(long int) == sizeof(void*));
#if !defined(VGO_freebsd) || (FREEBSD_VERS >= FREEBSD_12)
#if !defined(VGO_freebsd) || (FREEBSD_VERS >= FREEBSD_12_2)
// Check behaviour of memalign/free for big alignment.
// In particular, the below aims at checking that a
// superblock with a big size is not marked as reclaimable