Browse Source

add OSX cond

OSX specific condition
pull/4/head
ca333 6 years ago
committed by GitHub
parent
commit
4790166753
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/cryptoconditions/src/json_rpc.c

6
src/cryptoconditions/src/json_rpc.c

@ -1,8 +1,12 @@
#include "cryptoconditions.h"
#include "internal.h"
#include <cJSON.h>
#include <malloc.h>
#ifdef __LP64__
#include <stdlib.h>
#else
#include <malloc.h> // Index into CTransaction.vjoinsplit
#endif
static cJSON *jsonCondition(CC *cond) {
cJSON *root = cJSON_CreateObject();

Loading…
Cancel
Save