mirror of
https://github.com/GaloisInc/macaw.git
synced 2024-11-30 14:37:55 +03:00
8 lines
204 B
C
8 lines
204 B
C
// Provides operation for testing a C function triggers a segfault.
|
|
|
|
// Function for user test case.
|
|
typedef void (*test_fn)(void*);
|
|
|
|
|
|
void expect_segfault(test_fn test, void* arg, const char* testname);
|