comparison libvo/aclib.c @ 27341:e7c989f7a7c9

Start unifying names of internal preprocessor directives. Replace all USE_ prefixes by CONFIG_ prefixes to indicate options which are configurable.
author diego
date Wed, 30 Jul 2008 12:01:30 +0000
parents 273aa6124f66
children 25337a2147e7
comparison
equal deleted inserted replaced
27340:33274ce3cce0 27341:e7c989f7a7c9
1 #include "config.h" 1 #include "config.h"
2 #ifdef USE_FASTMEMCPY 2 #ifdef CONFIG_FASTMEMCPY
3 3
4 /* 4 /*
5 aclib - advanced C library ;) 5 aclib - advanced C library ;)
6 This file contains functions which improve and expand standard C-library 6 This file contains functions which improve and expand standard C-library
7 see aclib_template.c ... this file only contains runtime cpu detection and config options stuff 7 see aclib_template.c ... this file only contains runtime cpu detection and config options stuff
178 178
179 #endif //!RUNTIME_CPUDETECT 179 #endif //!RUNTIME_CPUDETECT
180 return to; 180 return to;
181 } 181 }
182 182
183 #endif /* use fastmemcpy */ 183 #endif /* CONFIG_FASTMEMCPY */
184