ia64/xen-unstable
changeset 4907:69bd3136c3b7
bitkeeper revision 1.1404 (4284f02azzS42sTfwP_o4ofbShQYDA)
sxpr_parser.c:
fix build
sxpr_parser.c:
fix build
author | smh22@firebug.cl.cam.ac.uk |
---|---|
date | Fri May 13 18:21:30 2005 +0000 (2005-05-13) |
parents | 7f7c68433c4c |
children | 650b80c41719 |
files | tools/libxutil/sxpr_parser.c |
line diff
1.1 --- a/tools/libxutil/sxpr_parser.c Fri May 13 15:08:29 2005 +0000 1.2 +++ b/tools/libxutil/sxpr_parser.c Fri May 13 18:21:30 2005 +0000 1.3 @@ -56,6 +56,7 @@ 1.4 static int state_start(Parser *p, char c); 1.5 static int begin_start(Parser *p, char c); 1.6 1.7 +#if 0 1.8 /** Print a parse error. 1.9 * 1.10 * @param in parser 1.11 @@ -83,6 +84,8 @@ static void wprintf(Parser *in, char *ms 1.12 va_end(args); 1.13 } 1.14 } 1.15 +#endif 1.16 + 1.17 1.18 /*============================================================================*/ 1.19 1.20 @@ -134,6 +137,7 @@ static char *get_message(ParseErrorId id 1.21 return ""; 1.22 } 1.23 1.24 +#if 0 1.25 /** Get the line number. 1.26 * 1.27 * @param in parser 1.28 @@ -149,6 +153,7 @@ static int get_line(Parser *in){ 1.29 static int get_column(Parser *in){ 1.30 return in->char_no; 1.31 } 1.32 +#endif 1.33 1.34 /** Get the line number the current token started on. 1.35 *