summaryrefslogtreecommitdiffstats
path: root/libc
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-03-21 22:52:25 -0700
committerElliott Hughes <enh@google.com>2013-03-21 22:52:25 -0700
commit56d161bb62225cea969b49c97ae732d1845e5304 (patch)
treed7ea0b9d7cb8bc87df02c1633aac209a68f1a4ac /libc
parent3323628d635d3973965ee458c1fee7d8ab45136f (diff)
downloadbionic-56d161bb62225cea969b49c97ae732d1845e5304.tar.gz
bionic-56d161bb62225cea969b49c97ae732d1845e5304.tar.bz2
bionic-56d161bb62225cea969b49c97ae732d1845e5304.zip
Replace unnecessary MIPS uses of <sys/linux-syscalls.h> with <asm/unistd.h>.
Change-Id: I193a35f9790b82c83fd3b5672e24ac1b2034d0b0
Diffstat (limited to 'libc')
-rw-r--r--libc/arch-mips/bionic/clone.S5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/arch-mips/bionic/clone.S b/libc/arch-mips/bionic/clone.S
index 007e90978..94e18a254 100644
--- a/libc/arch-mips/bionic/clone.S
+++ b/libc/arch-mips/bionic/clone.S
@@ -25,9 +25,10 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
-#include <linux/sched.h>
-#include <sys/linux-syscalls.h>
+
+#include <asm/unistd.h>
#include <linux/errno.h>
+#include <linux/sched.h>
.text
.type __pthread_clone, @function