commit | f86c4494ff9613dcdf3dd7713d1e2c5d989d8eba | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Thu Feb 25 22:05:28 2016 -0800 |
committer | Elliott Hughes <enh@google.com> | Thu Feb 25 22:05:28 2016 -0800 |
tree | 0fcc85b0cd5b41d8c797c11ee455b490b9a4e9e0 | |
parent | a8e75ba37deff962b0ddbc2fb81b96c3515ae7e5 [diff] [blame] |
If you're going to use memset... ...you'd better #include <string.h>. Change-Id: I83e0877f4151fc764588e2d876e66d7712d41f61
diff --git a/libc/bionic/pthread_exit.cpp b/libc/bionic/pthread_exit.cpp index afda089..3401ed7 100644 --- a/libc/bionic/pthread_exit.cpp +++ b/libc/bionic/pthread_exit.cpp
@@ -30,6 +30,7 @@ #include <signal.h> #include <stdlib.h> +#include <string.h> #include <sys/mman.h> #include "pthread_internal.h"