1 /*
2  * Copyright (C) 2015-2017 Alibaba Group Holding Limited
3  */
4 
5 #ifndef IPERF_COMMON_H
6 #define IPERF_COMMON_H
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 void iperf_wrapper_free(void * ptr);
13 void *iperf_wrapper_malloc(unsigned int size);
14 
15 #ifdef __cplusplus
16 };  // extern "C"
17 #endif
18 #endif
19