am 2c449617: am fbe9d3df: Merge "Fix strlen function type for mips."

* commit '2c449617c37c7b5419908499740530af2f1ca6f0':
  Fix strlen function type for mips.
This commit is contained in:
Chih-Hung Hsieh
2014-08-27 23:36:22 +00:00
committed by Android Git Automerger

View File

@@ -30,6 +30,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <string.h>
#include "mips-string-ops.h"
#define do_strlen_word(__av) {\
@@ -47,8 +48,8 @@
#define strlen my_strlen
#endif
int
strlen (const void *_a)
size_t
strlen (const char *_a)
{
int cnt = 0;
unsigned x;