File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ extern char _init_array_end;
1111
1212extern void _eadk_main ();
1313
14- inline void * __attribute__ ( ( always_inline )) eadk_memcpy (void * dst , const void * src , size_t n ) {
14+ static inline void * eadk_memcpy (void * dst , const void * src , size_t n ) {
1515 char * destination = (char * )dst ;
1616 char * source = (char * )src ;
1717
@@ -22,7 +22,7 @@ inline void * __attribute__((always_inline)) eadk_memcpy(void * dst, const void
2222 return dst ;
2323}
2424
25- inline void * __attribute__ ( ( always_inline )) eadk_memset (void * b , int c , size_t len ) {
25+ static inline void * eadk_memset (void * b , int c , size_t len ) {
2626 char * destination = (char * )b ;
2727 while (len -- ) {
2828 * destination ++ = (unsigned char )c ;
You can’t perform that action at this time.
0 commit comments