[uClibc-cvs] svn commit: trunk/uClibc/ldso/include

vapier at uclibc.org vapier at uclibc.org
Sat Jul 2 14:35:28 UTC 2005


Author: vapier
Date: 2005-07-02 08:35:27 -0600 (Sat, 02 Jul 2005)
New Revision: 10692

Log:
use new __always_inline define

Modified:
   trunk/uClibc/ldso/include/dl-string.h


Changeset:
Modified: trunk/uClibc/ldso/include/dl-string.h
===================================================================
--- trunk/uClibc/ldso/include/dl-string.h	2005-07-02 14:34:39 UTC (rev 10691)
+++ trunk/uClibc/ldso/include/dl-string.h	2005-07-02 14:35:27 UTC (rev 10692)
@@ -22,7 +22,7 @@
 #define NULL ((void *) 0)
 #endif
 
-static inline size_t __attribute__((__always_inline__)) _dl_strlen(const char * str)
+static __always_inline size_t _dl_strlen(const char * str)
 {
 	register const char *ptr = (char *) str-1;
 
@@ -30,7 +30,7 @@
 	return (ptr - str);
 }
 
-static inline char * __attribute__((__always_inline__)) _dl_strcat(char *dst, const char *src)
+static __always_inline char * _dl_strcat(char *dst, const char *src)
 {
 	register char *ptr = dst-1;
 




More information about the uClibc-cvs mailing list