mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
9 lines
212 B
C
9 lines
212 B
C
/* this is needed to compile the library, not to use it */
|
|
|
|
#include "../psyc.h"
|
|
#include "./debug.h"
|
|
|
|
/* perlisms for readability */
|
|
#define unless(COND) if (!(COND))
|
|
#define until(COND) while (!(COND))
|
|
|