Skip to content

Commit

Permalink
Include stdlib.h for abort()
Browse files Browse the repository at this point in the history
  • Loading branch information
hzeller committed Nov 13, 2024
1 parent a4ad7cb commit a750c94
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 a750c94

Please sign in to comment.