From: Alejandro Colomar Date: Fri, 13 May 2022 15:12:06 +0000 (+0200) Subject: grepc: srcfix X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc40a2d23e24cd0bb5b8d18c931839579060deb1;p=thirdparty%2Fman-pages.git grepc: srcfix Use alphabetic order. Signed-off-by: Alejandro Colomar --- diff --git a/bin/grepc b/bin/grepc index edfe93ff8..72c76772e 100755 --- a/bin/grepc +++ b/bin/grepc @@ -134,6 +134,18 @@ grepc_func_def() } +grepc_glibc_func_math() +{ + grepc_func_def "M_DECL_FUNC \(__$1\)"; +} + + +grepc_glibc_func() +{ + grepc_glibc_func_math "$1"; +} + + grepc_linux_func_syscall_decl() { grepc_helper \ @@ -159,24 +171,12 @@ grepc_linux_func() } -grepc_glibc_func_math() -{ - grepc_func_def "M_DECL_FUNC \(__$1\)"; -} - - -grepc_glibc_func() -{ - grepc_glibc_func_math "$1"; -} - - grepc_func() { grepc_func_decl "$1"; grepc_func_def "$1"; - grepc_linux_func "$1"; grepc_glibc_func "$1"; + grepc_linux_func "$1"; }