Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
341db256
Unverified
Commit
341db256
authored
Jun 22, 2020
by
Eddie Hung
Committed by
GitHub
Jun 22, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6 from whitequark/wasi-signal
Add missing WASI platform support for signal.h
parents
fd2c9b1c
81febe5d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
src/base/main/mainReal.c
+2
-0
src/sat/glucose/IntTypes.h
+6
-8
No files found.
src/base/main/mainReal.c
View file @
341db256
...
@@ -49,7 +49,9 @@ SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
...
@@ -49,7 +49,9 @@ SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#include <sys/times.h>
#include <sys/times.h>
#include <sys/resource.h>
#include <sys/resource.h>
#include <unistd.h>
#include <unistd.h>
#if !defined(__wasm)
#include <signal.h>
#include <signal.h>
#endif
#include <stdlib.h>
#include <stdlib.h>
#endif
#endif
...
...
src/sat/glucose/IntTypes.h
View file @
341db256
...
@@ -28,20 +28,18 @@ OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWA
...
@@ -28,20 +28,18 @@ OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWA
# include <sys/int_fmtio.h>
# include <sys/int_fmtio.h>
# include <sys/int_limits.h>
# include <sys/int_limits.h>
#el
se
#el
if _WIN32
#define __STDC_LIMIT_MACROS
# include "pstdint.h"
# include "pstdint.h"
//# include <inttypes.h>
#e
ndif
#e
lse
#include <limits.h>
# define __STDC_LIMIT_MACROS
# include <limits.h>
# include <inttypes.h>
#ifndef PRIu64
#define PRIu64 "lu"
#define PRIi64 "ld"
#endif
#endif
//=================================================================================================
//=================================================================================================
#include <misc/util/abc_namespaces.h>
#include <misc/util/abc_namespaces.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment