Annotation of parser3/src/include/compile.h, revision 1.1
1.1 ! paf 1: /*
! 2: $Id: core.C,v 1.20 2001/02/20 12:18:28 paf Exp $
! 3: */
! 4:
! 5: #ifndef COMPILE_H
! 6: #define COMPILE_H
! 7:
! 8: #include "pa_array.h"
! 9:
! 10: #ifndef NO_STRING_ORIGIN
! 11: # define COMPILE_PARAMS Pool *pool, char *source, char *file
! 12: # define COMPILE(pool, source, file) real_compile(pool, source, file)
! 13: #else
! 14: # define COMPILE_PARAMS Pool *pool, char *source
! 15: # define COMPILE(pool, source, file) real_compile(pool, source)
! 16: #endif
! 17:
! 18: Array *real_compile(COMPILE_PARAMS);
! 19:
! 20: #endif
E-mail: