mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #4739 from hzeller/feature-20241113-stdlib-for-abort
Include stdlib.h for `abort()`
This commit is contained in:
commit
1184418cc8
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
#include "ezminisat.h"
|
#include "ezminisat.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
#define INIT_X 123456789
|
#define INIT_X 123456789
|
||||||
#define INIT_Y 362436069
|
#define INIT_Y 362436069
|
||||||
|
@ -143,4 +144,3 @@ int main()
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
#include "ezminisat.h"
|
#include "ezminisat.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
#define INIT_X 123456789
|
#define INIT_X 123456789
|
||||||
#define INIT_Y 362436069
|
#define INIT_Y 362436069
|
||||||
|
@ -109,4 +110,3 @@ int main()
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue