summaryrefslogtreecommitdiff
path: root/Build/source/utils/xindy-new/xindy-2.4-rc1-PATCHES/patch-30-warnings
blob: aff5c0a51614e1c5535d488fc8dcf758de355787 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
diff -ur -x Makefile.in xindy.orig/tex2xindy/Makefile.am xindy/tex2xindy/Makefile.am
--- xindy.orig/tex2xindy/Makefile.am	2009-11-26 20:52:03.000000000 +0100
+++ xindy/tex2xindy/Makefile.am	2009-11-28 16:47:11.000000000 +0100
@@ -19,6 +19,8 @@
 ## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 ## Boston, MA 02110-1301 USA.
 
+AM_CFLAGS = $(WARNING_CFLAGS)
+
 bin_PROGRAMS = tex2xindy
 
 tex2xindy_SOURCES = tex2xindy.l
diff -ur -x Makefile.in xindy.orig/tex2xindy/tex2xindy.c xindy/tex2xindy/tex2xindy.c
--- xindy.orig/tex2xindy/tex2xindy.c	2009-11-26 20:56:54.000000000 +0100
+++ xindy/tex2xindy/tex2xindy.c	2009-11-28 16:53:01.000000000 +0100
@@ -668,7 +668,7 @@
 
 /* This function quotes a character, if necessary. */
 
-void qc( char ch ) {
+static void qc( char ch ) {
   switch (ch) {
     case '\\' :
     case '"'  :
@@ -680,7 +680,7 @@
 
 /* Quote an entire string. */
 
-void qs( char* str ) {
+static void qs( const char* str ) {
   while ( *str ) {
     qc( *str++ );
   }
@@ -691,7 +691,7 @@
    The parameter gets passed the amount of hex digits in the ^^-notation.
    In front of the hex digits are the same amount of ^ chars.
 */
-void omega_output_utf8 ( int width )
+static void omega_output_utf8 ( int width )
 {
     unsigned long int c = strtoul (yytext+width, NULL, 16);
     if (c < 0x80) {
@@ -2319,7 +2319,7 @@
     return 1;
 }
 
-void usage ()
+static void usage (void)
 {
     fputs("This is tex2xindy, $Revision: 1.21 $.\n", stderr);
     fputs("usage: tex2xindy [-o] [attr_file]\n", stderr);
diff -ur -x Makefile.in xindy.orig/tex2xindy/tex2xindy.l xindy/tex2xindy/tex2xindy.l
--- xindy.orig/tex2xindy/tex2xindy.l	2009-11-26 20:56:49.000000000 +0100
+++ xindy/tex2xindy/tex2xindy.l	2009-11-28 16:51:41.000000000 +0100
@@ -117,7 +117,7 @@
 
 /* This function quotes a character, if necessary. */
 
-void qc( char ch ) {
+static void qc( char ch ) {
   switch (ch) {
     case '\\' :
     case '"'  :
@@ -129,7 +129,7 @@
 
 /* Quote an entire string. */
 
-void qs( char* str ) {
+static void qs( const char* str ) {
   while ( *str ) {
     qc( *str++ );
   }
@@ -140,7 +140,7 @@
    The parameter gets passed the amount of hex digits in the ^^-notation.
    In front of the hex digits are the same amount of ^ chars.
 */
-void omega_output_utf8 ( int width )
+static void omega_output_utf8 ( int width )
 {
     unsigned long int c = strtoul (yytext+width, NULL, 16);
     if (c < 0x80) {
@@ -370,7 +370,7 @@
     return 1;
 }
 
-void usage ()
+static void usage (void)
 {
     fputs("This is tex2xindy, $Revision: 1.21 $.\n", stderr);
     fputs("usage: tex2xindy [-o] [attr_file]\n", stderr);