git: 09078445fb94 - main - vis(3): need <stdint.h> for SIZE_MAX
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 13 Aug 2023 05:29:08 UTC
The branch main has been updated by kevans: URL: https://cgit.FreeBSD.org/src/commit/?id=09078445fb94f84bea41361c2f372360289d86ee commit 09078445fb94f84bea41361c2f372360289d86ee Author: Kyle Evans <kevans@FreeBSD.org> AuthorDate: 2023-08-13 05:28:12 +0000 Commit: Kyle Evans <kevans@FreeBSD.org> CommitDate: 2023-08-13 05:28:12 +0000 vis(3): need <stdint.h> for SIZE_MAX --- contrib/libc-vis/vis.c | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/libc-vis/vis.c b/contrib/libc-vis/vis.c index a9f60c576277..fc3b50d6c7a5 100644 --- a/contrib/libc-vis/vis.c +++ b/contrib/libc-vis/vis.c @@ -71,6 +71,7 @@ __FBSDID("$FreeBSD$"); #include <assert.h> #include <vis.h> #include <errno.h> +#include <stdint.h> #include <stdlib.h> #include <wchar.h> #include <wctype.h>