1
0
Fork 0
mirror of git://git.psyced.org/git/psyclpc synced 2024-08-15 03:20:16 +00:00
psyclpc/src/mkfunc.c
2009-03-03 04:27:01 +01:00

23 lines
786 B
C

/*------------------------------------------------------------------
* mkfunc Wrapper
*
*------------------------------------------------------------------
* This file serves as a wrapper for make_func.c (created from make_func.y)
* in order to set up some macros required under some operating systems.
*------------------------------------------------------------------
*/
/*--------------------------------------------------------------------*/
/* Darwin uses the NetBSD variant of byacc, which either requires the
* parser to be compiled with -Dlint, or the existance of IDSTRING().
*/
#define lint
/*--------------------------------------------------------------------*/
#include "make_func.c"
/*====================================================================*/