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/pbm2g3.c 1998-05-07 13:32:04.000000000 +0200
+++ mgetty-1.1.36/g3/pbm2g3.c 2017-06-03 23:32:07.020481555 +0200
@@ -40,7 +40,7 @@ static unsigned int out_hibit = 0;
static int out_byte_tab[ 256 ]; /* for g3 byte reversal */
#ifdef __GNUC__
-inline
+static inline
#endif
void putcode _P2( (code, len), int code, int len )
{
@@ -60,7 +60,7 @@ void putcode _P2( (code, len), int code,
}
#ifdef __GNUC__
-inline
+static inline
#endif
void puteol _P0( void ) /* write byte-aligned EOL */
{
@@ -69,7 +69,7 @@ void puteol _P0( void ) /* write byte-
}
#ifdef __GNUC__
-inline
+static inline
#endif
void putwhitespan _P1( (l), int l )
{
@@ -100,7 +100,7 @@ void putwhitespan _P1( (l), int l )
}
#ifdef __GNUC__
-inline
+static inline
#endif
void putblackspan _P1( (l), int l )
{
|