Merge "vpx_mem: remove REPLACE_BUILTIN_FUNCTIONS"

This commit is contained in:
James Zern 2015-04-29 02:58:38 +00:00 коммит произвёл Gerrit Code Review
Родитель 4902606bb6 3e9263e1ca
Коммит ccc9e1da8d
1 изменённых файлов: 0 добавлений и 23 удалений

Просмотреть файл

@ -17,11 +17,6 @@
# include <lddk.h>
#endif
#ifndef REPLACE_BUILTIN_FUNCTIONS
# define REPLACE_BUILTIN_FUNCTIONS 0 /* replace builtin functions with their
vpx_ equivalents */
#endif
#include <stdlib.h>
#include <stddef.h>
@ -42,24 +37,6 @@ extern "C" {
#endif
void *vpx_memmove(void *dest, const void *src, size_t count);
/* some defines for backward compatibility */
#define DMEM_GENERAL 0
// (*)<
#if REPLACE_BUILTIN_FUNCTIONS
# ifndef __VPX_MEM_C__
# define memalign vpx_memalign
# define malloc vpx_malloc
# define calloc vpx_calloc
# define realloc vpx_realloc
# define free vpx_free
# define memcpy vpx_memcpy
# define memmove vpx_memmove
# define memset vpx_memset
# endif
#endif
#ifndef __VPX_MEM_C__
# include <string.h>
# define vpx_memcpy memcpy