commit f26a3c7347e47b6db0aa39d040442b85b6dc1bb0 from: Omar Polo date: Wed Sep 06 17:47:39 2023 UTC fix the test for getdtablecount The configure ran it but wasn't present in the tests.c file. Will need to switch away from this all-in-one someday... commit - 6d77726763cac967c5a9e8b5d629dee58c330306 commit + f26a3c7347e47b6db0aa39d040442b85b6dc1bb0 blob - 15cea454351f145671064f4180f55456954d6f07 blob + 97d001ee588d347a32317376b5a0b6cfc0e42721 --- tests.c +++ tests.c @@ -201,6 +201,15 @@ main(void) return 0; } #endif /* TEST_FTS */ +#if TEST_GETDTABLECOUNT +#include + +int +main(void) +{ + return getdtablecount(); +} +#endif /* TEST_GETDTABLECOUNT */ #if TEST_GETEXECNAME #include