USE_FASTMEMCPY bug fixed.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@801 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pontscho 2001-05-14 18:18:14 +00:00
parent 5bc84d0f81
commit 91df402134
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#ifndef __MPLAYER_MEMCPY
#define __MPLAYER_MEMCPY 1
#ifdef USE_FASTMEMCPY
#if defined( HAVE_MMX2 ) || defined( HAVE_3DNOW ) || defined( HAVE_MMX )
#include <stddef.h>
@ -10,3 +12,5 @@ extern void * fast_memcpy(void * to, const void * from, size_t len);
#endif
#endif
#endif