diff options
author | Elliott Hughes <enh@google.com> | 2013-09-25 22:43:36 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2013-09-26 08:57:17 -0700 |
commit | d612165c6705379aa50144afc35aa40c16793728 (patch) | |
tree | 211edb774ff41f0983e730b5f8d1eff99a04b61c /libc/arch-x86 | |
parent | a1c1a3344de1c0a35126ea6f43e1d55184f078da (diff) | |
download | bionic-d612165c6705379aa50144afc35aa40c16793728.zip bionic-d612165c6705379aa50144afc35aa40c16793728.tar.gz bionic-d612165c6705379aa50144afc35aa40c16793728.tar.bz2 |
Make it easier to add syscalls for another architecture.
Much of the per-architecture duplication can be removed, so let's do so
before we add the 64-bit architectures.
Change-Id: Ieb796503c8e5353ea38c3bab768bb9a690c9a767
Diffstat (limited to 'libc/arch-x86')
-rw-r--r-- | libc/arch-x86/syscalls.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/arch-x86/syscalls.mk b/libc/arch-x86/syscalls.mk index 7180cf2..424bd1e 100644 --- a/libc/arch-x86/syscalls.mk +++ b/libc/arch-x86/syscalls.mk @@ -1,5 +1,5 @@ -# auto-generated by gensyscalls.py, do not touch -syscall_src := +# Auto-generated by gensyscalls.py. Do not edit. +syscall_src := syscall_src += arch-x86/syscalls/_exit.S syscall_src += arch-x86/syscalls/_exit_thread.S syscall_src += arch-x86/syscalls/__fork.S |