mirror of
https://github.com/mpv-player/mpv
synced 2024-12-12 01:46:16 +00:00
9 lines
157 B
C
9 lines
157 B
C
|
#ifndef GPU_MEMCPY_SSE4_H_
|
||
|
#define GPU_MEMCPY_SSE4_H_
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
void *gpu_memcpy(void *restrict d, const void *restrict s, size_t size);
|
||
|
|
||
|
#endif
|