Skip to content

Commit

Permalink
rib: fix missing header includes
Browse files Browse the repository at this point in the history
[ upstream commit 585617c ]

The standard integer types, and the size_t types are missing their
required header includes in the rib header file.

Fixes: 5a5793a ("rib: add RIB library")

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Vladimir Medvedkin <vladimir.medvedkin@intel.com>
Reviewed-by: David Marchand <david.marchand@redhat.com>
  • Loading branch information
bruce-richardson authored and cpaelzer committed Feb 3, 2021
1 parent bde221c commit dc9f85a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/librte_rib/rte_rib.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
* Level compressed tree implementation for IPv4 Longest Prefix Match
*/

#include <stdlib.h>
#include <stdint.h>

#include <rte_compat.h>

#ifdef __cplusplus
Expand Down

0 comments on commit dc9f85a

Please sign in to comment.