You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
652 B

  1. From 507c394cfcf4edffc5e4450c5d737e545c26b857 Mon Sep 17 00:00:00 2001
  2. From: Daniel Engberg <daniel.engberg.lists@pyret.net>
  3. Date: Sat, 12 Dec 2020 18:56:38 +0100
  4. Subject: [PATCH] p11-kit/lists.c: Add stdint.h to fix compilation
  5. Add stdint.h otherwise compilation fails on FreeBSD 13-CURRENT with "use of undeclared identifier 'SIZE_MAX'"
  6. Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
  7. ---
  8. p11-kit/lists.c | 1 +
  9. 1 file changed, 1 insertion(+)
  10. --- a/p11-kit/lists.c
  11. +++ b/p11-kit/lists.c
  12. @@ -39,6 +39,7 @@
  13. #include <assert.h>
  14. #include <ctype.h>
  15. +#include <stdint.h>
  16. #include <string.h>
  17. #include <stdio.h>
  18. #include <stdlib.h>