From: Martin Storsjö Date: Thu, 25 Aug 2022 06:49:59 +0000 (+0300) Subject: ld: pe: Move the return type to a separate line from the function name X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=45692d91e733233d667665750eabdba8ba98b227;p=binutils-gdb.git ld: pe: Move the return type to a separate line from the function name This fixes the coding style of an old, preexisting function. --- diff --git a/ld/emultempl/pe.em b/ld/emultempl/pe.em index 2706d73d144..665c02cad6b 100644 --- a/ld/emultempl/pe.em +++ b/ld/emultempl/pe.em @@ -157,7 +157,8 @@ static char *pe_dll_search_prefix = NULL; extern const char *output_filename; -static int is_underscoring (void) +static int +is_underscoring (void) { int u = 0; if (pe_leading_underscore != -1) diff --git a/ld/emultempl/pep.em b/ld/emultempl/pep.em index accefc0ed60..05214b1ba3c 100644 --- a/ld/emultempl/pep.em +++ b/ld/emultempl/pep.em @@ -167,7 +167,8 @@ static char * pep_dll_search_prefix = NULL; extern const char *output_filename; -static int is_underscoring (void) +static int +is_underscoring (void) { int u = 0; if (pep_leading_underscore != -1)