-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Force INT32_MAX to be defined by <stdint.h> on AWS Linux
- Loading branch information
Jace A Mogill
committed
Feb 21, 2017
1 parent
8d0689c
commit 07726d1
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*-----------------------------------------------------------------------------+ | ||
| Extended Memory Semantics (EMS) Version 1.3.0 | | ||
| Extended Memory Semantics (EMS) Version 1.4.3 | | ||
| Synthetic Semantics http://www.synsem.com/ [email protected] | | ||
+-----------------------------------------------------------------------------+ | ||
| Copyright (c) 2011-2014, Synthetic Semantics LLC. All rights reserved. | | ||
|
@@ -31,6 +31,8 @@ | |
+-----------------------------------------------------------------------------*/ | ||
#ifndef EMSPROJ_NODEJS_H | ||
#define EMSPROJ_NODEJS_H | ||
#define __STDC_LIMIT_MACROS | ||
#include <stdint.h> | ||
#include <node.h> | ||
#include <v8.h> | ||
#include "nan.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "ems", | ||
"version": "1.4.2", | ||
"version": "1.4.3", | ||
"author": "Synthetic Semantics <[email protected]>", | ||
"description": "Persistent Shared Memory and Parallel Programming Model", | ||
"contributors": [ | ||
|