Remove extern C blocks from lib/* internal APIs (except xxhash.h)

This commit is contained in:
Victor Zhang
2024-12-19 16:00:11 -08:00
parent d51e6072a8
commit d0d5ce4c00
17 changed files with 0 additions and 163 deletions
-9
View File
@@ -16,10 +16,6 @@
#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_customMem */
#include "../zstd.h"
#if defined (__cplusplus)
extern "C" {
#endif
typedef struct POOL_ctx_s POOL_ctx;
/*! POOL_create() :
@@ -82,9 +78,4 @@ void POOL_add(POOL_ctx* ctx, POOL_function function, void* opaque);
*/
int POOL_tryAdd(POOL_ctx* ctx, POOL_function function, void* opaque);
#if defined (__cplusplus)
}
#endif
#endif