Changeset 302 for trunk

Show
Ignore:
Timestamp:
03/20/2008 10:41:44 (9 months ago)
Author:
indeyets
Message:

fix for minor warnings

Location:
trunk/lib
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/syck.h

    r287 r302  
    470470 * Lexer prototypes 
    471471 */ 
     472#include "gram.h" 
    472473void syckerror( const char * ); 
    473474int syckparse( void * ); 
     475int sycklex( YYSTYPE *sycklval, SyckParser *parser ); 
    474476 
    475477#if defined(__cplusplus) 
  • trunk/lib/yamlbyte.h

    r124 r302  
    8282    YAMLBYTE_E_WRITE     = 'W',   /* output stream write error      */ 
    8383    YAMLBYTE_E_OTHER     = '?',   /* some other error condition     */ 
    84     YAMLBYTE_E_PARSE     = 'P',   /* parse error, check bytecodes   */ 
     84    YAMLBYTE_E_PARSE     = 'P'    /* parse error, check bytecodes   */ 
    8585} yamlbyte_result_t; 
    8686