aboutsummaryrefslogtreecommitdiff
path: root/src/utils/mem.h
blob: f0512195660fdb7ea48a306d82f1d8fd5781d1d5 (plain)
1
2
3
4
5
6
7
8
#ifndef MEM_H
#define MEM_H

#include "types.h"

void memcpy(void *src, void *dst, int size);

#endif