Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Aug 2023 05:29:08 GMT
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 09078445fb94 - main - vis(3): need <stdint.h> for SIZE_MAX
Message-ID:  <202308130529.37D5T8a7019813@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202308130529.37D5T8a7019813>