#ifndef __SAIL_FAILURE__ #define __SAIL_FAILURE__ #include /* * Called when some builtin hits an unexpected case, such as overflow * when using 64- or 128-bit integers. */ void sail_failure(char *message); /* * Called for pattern match failures */ void sail_match_failure(char *message); /* * Implements the Sail assert construct */ int sail_assert(bool result, char *message); #endif