Skip to content

Commit

Permalink
Merge pull request #4739 from hzeller/feature-20241113-stdlib-for-abort
Browse files Browse the repository at this point in the history
Include stdlib.h for `abort()`
  • Loading branch information
povik authored Nov 20, 2024
2 parents b89bd02 + a750c94 commit 1184418
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/ezsat/demo_cmp.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#include "ezminisat.h"
#include <assert.h>
#include <stdlib.h>

#define INIT_X 123456789
#define INIT_Y 362436069
Expand Down Expand Up @@ -143,4 +144,3 @@ int main()
}
return 0;
}

2 changes: 1 addition & 1 deletion libs/ezsat/demo_vec.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#include "ezminisat.h"
#include <assert.h>
#include <stdlib.h>

#define INIT_X 123456789
#define INIT_Y 362436069
Expand Down Expand Up @@ -109,4 +110,3 @@ int main()

return 0;
}

0 comments on commit 1184418

Please sign in to comment.