mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
26 lines
409 B
C
26 lines
409 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <signal.h>
|
|
#include <setjmp.h>
|
|
#include <assert.h>
|
|
|
|
#include "arith_include1.c"
|
|
|
|
int main(void)
|
|
{
|
|
#include "arith_include2.c"
|
|
|
|
// Base ========================================================
|
|
b(p, p); // ok
|
|
|
|
b(up, u); // ok
|
|
|
|
b(un, u); // undet
|
|
|
|
b(n, n); // det
|
|
|
|
b(nn, n); // det
|
|
|
|
return 0;
|
|
}
|