Changeset 4754
- Timestamp:
- 11/06/08 00:06:47 (5 years ago)
- Location:
- trunk/src/target/opkg/libbb
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/target/opkg/libbb/libbb.h
r3880 r4754 346 346 #endif 347 347 348 /* Stupid gcc always includes its own builtin strlen()... */349 extern size_t xstrlen(const char *string);350 #define strlen(x) xstrlen(x)351 352 348 #endif /* __LIBBB_H__ */ -
trunk/src/target/opkg/libbb/xfuncs.c
r3837 r4754 86 86 } 87 87 88 /* Stupid gcc always includes its own builtin strlen()... */89 #undef strlen90 size_t xstrlen(const char *string)91 {92 return(strlen(string));93 }94 95 88 /* END CODE */ 96 89 /*
Note: See TracChangeset
for help on using the changeset viewer.
