From: Tom Jones Date: Fri, 26 Jan 2024 17:32:02 +0000 (+0000) Subject: svm: Include stdint on FreeBSD X-Git-Tag: v24.10-rc0~259 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F72%2F40272%2F2;p=vpp.git svm: Include stdint on FreeBSD On FreeBSD we need to include stdint.h to get __WORDSIZE. Type: improvement Change-Id: I784aa0856fd8298f33016b7ccedecfa3672d5429 Signed-off-by: Tom Jones --- diff --git a/src/svm/svm_common.h b/src/svm/svm_common.h index c0581f2c29a..e3aaba9b76f 100644 --- a/src/svm/svm_common.h +++ b/src/svm/svm_common.h @@ -19,6 +19,9 @@ #define __included_svm_common_h__ #include +#ifdef __FreeBSD__ +#include +#endif /* __FreeBSD__ */ #include #include #include