1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
--- mgetty-1.1.36.orig/g3/g3cat.c 2005-02-27 20:03:37.000000000 +0100
+++ mgetty-1.1.36/g3/g3cat.c 2017-06-03 23:40:23.804404768 +0200
@@ -44,7 +44,7 @@ static int b_written = 0; /* bytes of a
/* written */
#ifdef __GNUC__
-inline
+static inline
#endif
void putcode _P2( (code, len), int code, int len )
{
@@ -67,7 +67,7 @@ void putcode _P2( (code, len), int code,
}
#ifdef __GNUC__
-inline
+static inline
#endif
void putwhitespan _P1( (l), int l )
{
@@ -98,7 +98,7 @@ void putwhitespan _P1( (l), int l )
}
#ifdef __GNUC__
-inline
+static inline
#endif
void putblackspan _P1( (l), int l )
{
@@ -129,7 +129,7 @@ void putblackspan _P1( (l), int l )
}
#ifdef __GNUC__
-inline
+static inline
#endif
void puteol _P0( void ) /* write byte-aligned EOL */
{
|