blob: e908bd38aef10cf3671dc91086bc0481564f7ac9 [file] [log] [blame]
#include <stddef.h>
void swap_loop(char* __restrict a, char* __restrict b, size_t len);
void swap_malloc(char* __restrict a, char* __restrict b, size_t len);
void swap_alloca(char* __restrict a, char* __restrict b, size_t len);