This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI C/C++ Compiler
Hi Ti Experts,
I am using memcpy_t2.asm file fro Ti library,
If i directly use memcpy in my function no issue, but if try to add a memcpy.h and add a declaration for memcpy then i am getting below build warning
memcpy.h", line 6: warning #1853-D: declaration hides built-in function "memcpy".
Please help me in resolving the build warning.0842.memcpy.h7571.memcpy_t2.asm
Don't supply your own declaration of memcpy. Instead, #include <string.h>, and use the declaration in that standard header file.
Thanks and regards,
-George