2019-09-18 Joseph Myers * sysdeps/unix/sysv/linux/riscv/vfork.S: Do not include . (CLONE_VM): New macro. (CLONE_VFORK): Likewise. Index: glibc-2.30/sysdeps/unix/sysv/linux/riscv/vfork.S =================================================================== --- glibc-2.30.orig/sysdeps/unix/sysv/linux/riscv/vfork.S +++ glibc-2.30/sysdeps/unix/sysv/linux/riscv/vfork.S @@ -21,9 +21,12 @@ #include #include #define __ASSEMBLY__ -#include #include +#define CLONE_VM 0x00000100 /* Set if VM shared between processes. */ +#define CLONE_VFORK 0x00004000 /* Set if the parent wants the child to + wake it up on mm_release. */ + .text LEAF (__libc_vfork)