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 <thj@freebsd.org>
This commit is contained in:
Tom Jones
2024-01-26 17:32:02 +00:00
committed by Damjan Marion
parent 7d2978dab9
commit caf9d4f4f8

View File

@ -19,6 +19,9 @@
#define __included_svm_common_h__
#include <stdarg.h>
#ifdef __FreeBSD__
#include <stdint.h>
#endif /* __FreeBSD__ */
#include <pthread.h>
#include <sys/user.h>
#include <vppinfra/clib.h>