~ubuntu-branches/ubuntu/vivid/taopm/vivid

« back to all changes in this revision

Viewing changes to taoparse/taoparser.yy

  • Committer: Package Import Robot
  • Author(s): Tiago Bortoletto Vaz
  • Date: 2013-04-18 19:36:57 UTC
  • Revision ID: package-import@ubuntu.com-20130418193657-48dmuxggnxwdlj2k
Tags: 1.0-1
Initial release. (Closes: #703111)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
#include <iostream>
21
21
#include <sstream>
22
 
#include <string>
 
22
#include <cstring>
 
23
#include <stdio.h>
23
24
#include "taoparserdefs.h"
24
25
 
25
 
int yyerror(char *s);
 
26
int yyerror(const char *s);
26
27
 
27
28
//#ifdef LINUX
28
29
int yylex(void);
2923
2924
    } 
2924
2925
 
2925
2926
 
2926
 
int yyerror (char *s)
 
2927
int yyerror (const char *s)
2927
2928
    {
2928
2929
    parse_error(what_I_expected_here);
2929
2930
    std::cout << "PARSE_FAILED";