aboutsummaryrefslogtreecommitdiffstats
path: root/libical/src
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-26 17:49:02 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-26 17:49:02 +0800
commit295af0a08ffeaf636490c457cf72e9a4d2055a83 (patch)
tree11840fe5bcc31c43e76fd5f3bb8b9e6750ec026c /libical/src
parentf1132eb0185ac4e2ff850d48134d70e38749b214 (diff)
downloadgsoc2013-evolution-295af0a08ffeaf636490c457cf72e9a4d2055a83.tar
gsoc2013-evolution-295af0a08ffeaf636490c457cf72e9a4d2055a83.tar.gz
gsoc2013-evolution-295af0a08ffeaf636490c457cf72e9a4d2055a83.tar.bz2
gsoc2013-evolution-295af0a08ffeaf636490c457cf72e9a4d2055a83.tar.lz
gsoc2013-evolution-295af0a08ffeaf636490c457cf72e9a4d2055a83.tar.xz
gsoc2013-evolution-295af0a08ffeaf636490c457cf72e9a4d2055a83.tar.zst
gsoc2013-evolution-295af0a08ffeaf636490c457cf72e9a4d2055a83.zip
Got rid of some warnings.
2000-08-25 Christopher James Lahey <clahey@helixcode.com> * examples/access_properties_and_parameters.c, src/libicalvcal/vcc.y: Got rid of some warnings. * src/libicalvcal/vcc.c: Checking in generated C file. svn path=/trunk/; revision=5059
Diffstat (limited to 'libical/src')
-rw-r--r--libical/src/libicalvcal/vcc.c4
-rw-r--r--libical/src/libicalvcal/vcc.y4
2 files changed, 4 insertions, 4 deletions
diff --git a/libical/src/libicalvcal/vcc.c b/libical/src/libicalvcal/vcc.c
index ea916781df..b6de83cda4 100644
--- a/libical/src/libicalvcal/vcc.c
+++ b/libical/src/libicalvcal/vcc.c
@@ -165,7 +165,7 @@ extern "C" {
#endif
extern void Parse_Debug(const char *s);
- extern void yyerror(char *s);
+ static void yyerror(char *s);
#if __CPLUSPLUS__
};
@@ -1920,7 +1920,7 @@ EndString:
return lexStr();
} /* LexQuotedPrintable */
-static int yylex() {
+int yylex() {
int token = 0;
int lexmode = LEXMODE();
diff --git a/libical/src/libicalvcal/vcc.y b/libical/src/libicalvcal/vcc.y
index fa314efeb5..1c800990c4 100644
--- a/libical/src/libicalvcal/vcc.y
+++ b/libical/src/libicalvcal/vcc.y
@@ -139,7 +139,7 @@ extern "C" {
#endif
extern void Parse_Debug(const char *s);
- extern void yyerror(char *s);
+ static void yyerror(char *s);
#if __CPLUSPLUS__
};
@@ -997,7 +997,7 @@ EndString:
return lexStr();
} /* LexQuotedPrintable */
-static int yylex() {
+int yylex() {
int token = 0;
int lexmode = LEXMODE();