pipeline: fix missing header includes

The stdio.h header needs to be included to get the definition of the
FILE type.

Fixes: b32c0a2c5e ("pipeline: add SWX table update high level API")
Fixes: 3ca60ceed7 ("pipeline: add SWX pipeline specification file")
Cc: stable@dpdk.org

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Reviewed-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
Bruce Richardson 2021-01-15 11:10:44 +00:00 committed by David Marchand
parent 3b4d434e53
commit cd93ec8961
2 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ extern "C" {
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <rte_compat.h>

View File

@ -15,6 +15,7 @@ extern "C" {
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <rte_compat.h>