10 lines
133 B
C
10 lines
133 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "test-util.h"
|
|
|
|
void check_fail(const char* message) {
|
|
puts(message);
|
|
abort();
|
|
}
|