summaryrefslogtreecommitdiff
path: root/src/compat/rawmem.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/compat/rawmem.hpp')
-rw-r--r--src/compat/rawmem.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compat/rawmem.hpp b/src/compat/rawmem.hpp
index f030963..dd038be 100644
--- a/src/compat/rawmem.hpp
+++ b/src/compat/rawmem.hpp
@@ -25,6 +25,9 @@
# include "fwd.hpp"
+
+namespace tmwa
+{
inline
void really_memcpy(uint8_t *dest, const uint8_t *src, size_t n)
{
@@ -47,5 +50,6 @@ void really_memset0(uint8_t *dest, size_t n)
{
memset(dest, '\0', n);
}
+} // namespace tmwa
#endif // TMWA_COMPAT_RAWMEM_HPP