View | Details | Raw Unified | Return to bug 248735
Collapse All | Expand All

(-)devel/binutils/files/patch-binutils_coffdump.c (+11 lines)
Line 0 Link Here
1
--- binutils/coffdump.c.orig	2019-09-09 13:19:43 UTC
2
+++ binutils/coffdump.c
3
@@ -456,8 +456,6 @@ coff_dump (struct coff_ofile *ptr)
4
     dump_coff_section (ptr->sections + i);
5
 }
6
 
7
-char * program_name;
8
-
9
 static void
10
 show_usage (FILE *file, int status)
11
 {
(-)devel/binutils/files/patch-binutils_srconv.c (+11 lines)
Line 0 Link Here
1
--- binutils/srconv.c.orig	2019-09-09 13:19:43 UTC
2
+++ binutils/srconv.c
3
@@ -1687,8 +1687,6 @@ prescan (struct coff_ofile *otree)
4
     }
5
 }
6
 
7
-char *program_name;
8
-
9
 ATTRIBUTE_NORETURN static void
10
 show_usage (FILE *ffile, int status)
11
 {
(-)devel/binutils/files/patch-binutils_sysdump.c (+11 lines)
Line 0 Link Here
1
--- binutils/sysdump.c.orig	2019-09-09 13:19:43 UTC
2
+++ binutils/sysdump.c
3
@@ -633,8 +633,6 @@ module (void)
4
     }
5
 }
6
 
7
-char *program_name;
8
-
9
 ATTRIBUTE_NORETURN static void
10
 show_usage (FILE *ffile, int status)
11
 {
(-)devel/binutils/files/patch-libctf_swap.h (+34 lines)
Line 0 Link Here
1
--- libctf/swap.h.orig	2019-09-09 13:19:45 UTC
2
+++ libctf/swap.h
3
@@ -28,13 +28,13 @@
4
 #else
5
 
6
 /* Provide our own versions of the byteswap functions.  */
7
-inline uint16_t
8
+static inline uint16_t
9
 bswap_16 (uint16_t v)
10
 {
11
   return ((v >> 8) & 0xff) | ((v & 0xff) << 8);
12
 }
13
 
14
-inline uint32_t
15
+static inline uint32_t
16
 bswap_32 (uint32_t v)
17
 {
18
   return (  ((v & 0xff000000) >> 24)
19
@@ -43,13 +43,13 @@ bswap_32 (uint32_t v)
20
 	  | ((v & 0x000000ff) << 24));
21
 }
22
 
23
-inline uint64_t
24
+static inline uint64_t
25
 bswap_identity_64 (uint64_t v)
26
 {
27
   return v;
28
 }
29
 
30
-inline uint64_t
31
+static inline uint64_t
32
 bswap_64 (uint64_t v)
33
 {
34
   return (  ((v & 0xff00000000000000ULL) >> 56)

Return to bug 248735