The common C shims include headers that already declare every Rust-exported symbol. Remove duplicate declarations so strict C builds do not report redundant declarations or macro-expanded aliases. The shims remain intentionally declaration-only; Rust still owns the exported implementation. Test Plan: - compile debug.c with -Wall -Wextra -Werror - compile error_private.c with -Wall -Wextra -Werror - compile zstd_common.c with -Wall -Wextra -Werror Refs: rust/README.md
5 lines
116 B
C
5 lines
116 B
C
#include "error_private.h"
|
|
#include "zstd_internal.h"
|
|
|
|
/* Implementation moved to Rust (rust/src/zstd_common.rs) */
|