Added missing include

This commit is contained in:
Luca Deri 2018-06-05 23:02:24 +02:00
parent 2b4321b5c3
commit dc9409ae12
3 changed files with 6 additions and 0 deletions

View file

@ -22,6 +22,8 @@
*
*/
#include "ndpi_api.h"
#ifndef NDPI_NO_STD_INC
#include <stdlib.h>
#include <stdio.h>

View file

@ -3,6 +3,8 @@
#ifndef _HASH_H_
#define _HASH_H_
#include "ndpi_api.h"
struct entry_s {
char *key;
u_int16_t value;

View file

@ -1,5 +1,7 @@
/* Based on https://gist.github.com/tonious/1377667 */
#include <stdint.h>
#include <sys/types.h>
#include <stdlib.h>
#include <stdio.h>
#include <limits.h>