Module Name: src Committed By: skrll Date: Sun Feb 4 18:32:31 UTC 2018
Modified Files: src/lib/libc/arch/aarch64/sys: pipe.S Log Message: lower case 'ret' to avoid macro clash To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/lib/libc/arch/aarch64/sys/pipe.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/arch/aarch64/sys/pipe.S diff -u src/lib/libc/arch/aarch64/sys/pipe.S:1.1 src/lib/libc/arch/aarch64/sys/pipe.S:1.2 --- src/lib/libc/arch/aarch64/sys/pipe.S:1.1 Sun Aug 10 05:47:37 2014 +++ src/lib/libc/arch/aarch64/sys/pipe.S Sun Feb 4 18:32:31 2018 @@ -1,4 +1,4 @@ -/* $NetBSD: pipe.S,v 1.1 2014/08/10 05:47:37 matt Exp $ */ +/* $NetBSD: pipe.S,v 1.2 2018/02/04 18:32:31 skrll Exp $ */ /*- * Copyright (c) 2014 The NetBSD Foundation, Inc. @@ -39,5 +39,5 @@ ENTRY(_pipe) _INVOKE_CERROR() stp w0, w1, [x9] mov w0, wzr - RET + ret END(_pipe)