picrin/extlib/benz/include/picconf.h

19 lines
425 B
C
Raw Normal View History

2014-08-25 00:38:09 -04:00
/**
* See Copyright Notice in picrin.h
*/
2016-06-19 05:27:24 -04:00
/** enable libc? */
2016-02-22 14:37:58 -05:00
/* #define PIC_USE_LIBC 1 */
2015-05-27 12:55:55 -04:00
2016-06-19 05:27:24 -04:00
/** enable stdio */
2016-02-22 14:37:58 -05:00
/* #define PIC_USE_STDIO 1 */
2016-06-19 05:27:24 -04:00
/** enable specific features */
2016-02-22 14:37:58 -05:00
/* #define PIC_USE_WRITE 1 */
2015-06-19 01:03:52 -04:00
/** essential external functions */
/* #define PIC_JMPBUF jmp_buf */
2015-05-27 11:41:55 -04:00
/* #define PIC_SETJMP(pic, buf) setjmp(buf) */
/* #define PIC_LONGJMP(pic, buf, val) longjmp((buf), (val)) */
2015-05-27 13:12:26 -04:00
/* #define PIC_ABORT(pic) abort() */