mirror of
https://github.com/ctm/executor.git
synced 2025-02-21 02:28:58 +00:00
23 lines
292 B
C
23 lines
292 B
C
#include <stdio.h>
|
|
|
|
#include "error.h"
|
|
|
|
int main(void)
|
|
{
|
|
struct foo **h;
|
|
|
|
h = NewHandle (100);
|
|
|
|
HANDLE_CHECK (h);
|
|
DisposHandle (h);
|
|
|
|
if (1)
|
|
ERROR_CHECK_INHIBIT();
|
|
fprintf (stderr, "neato\n");
|
|
ERROR_CHECK_RESTORE();
|
|
else
|
|
fprintf (stderr, "ick\n");
|
|
|
|
return 0;
|
|
}
|