aboutsummaryrefslogtreecommitdiffstats
path: root/src/env.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/env.c')
-rw-r--r--src/env.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/env.c b/src/env.c
index ef649339..ac987ccc 100644
--- a/src/env.c
+++ b/src/env.c
@@ -32,16 +32,6 @@ struct SerdEnvImpl {
size_t n_prefixes;
};
-static SerdNode
-serd_node_copy(const SerdNode* node)
-{
- SerdNode copy = *node;
- uint8_t* buf = malloc(copy.n_bytes);
- memcpy(buf, node->buf, copy.n_bytes);
- copy.buf = buf;
- return copy;
-}
-
SERD_API
SerdEnv
serd_env_new()