aboutsummaryrefslogtreecommitdiffstats
path: root/vespamalloc/src/vespamalloc/malloc/independent_non_inlined_memcpy.h
blob: 0ba05f5383e9861df4f3248b845742cc1baa0ec8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <cstddef>

namespace vespamalloc {

// Simple memcpy replacement to avoid calling code in other dso.
void independent_non_inlined_memcpy(void *dest_in, const void *src_in, size_t n);

}