Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates to build libecbufr on OSX 13 #100

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion API/Sources/bufr_desc.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This file is part of libECBUFR.
#include "private/gcmemory.h"
#include "config.h"

static caddr_t BufrDescriptor_gcmemory=NULL;
static void * BufrDescriptor_gcmemory=NULL;


static int bufr_check_class31_set( BufrDescriptor *cb );
Expand Down
2 changes: 1 addition & 1 deletion API/Sources/bufr_linklist.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This file is part of libECBUFR.
#include "private/gcmemory.h"
#include "config.h"

static caddr_t ListNode_gcmemory=NULL;
static void * ListNode_gcmemory=NULL;


/**************************************************************************
Expand Down
14 changes: 7 additions & 7 deletions API/Sources/bufr_value.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ This file is part of libECBUFR.
#include "private/gcmemory.h"
#include "config.h"

static caddr_t ValueINT8_gcmemory=NULL;
static caddr_t ValueINT16_gcmemory=NULL;
static caddr_t ValueINT32_gcmemory=NULL;
static caddr_t ValueINT64_gcmemory=NULL;
static caddr_t ValueFLT32_gcmemory=NULL;
static caddr_t ValueFLT64_gcmemory=NULL;
static caddr_t ValueSTRING_gcmemory=NULL;
static void * ValueINT8_gcmemory=NULL;
static void * ValueINT16_gcmemory=NULL;
static void * ValueINT32_gcmemory=NULL;
static void * ValueINT64_gcmemory=NULL;
static void * ValueFLT32_gcmemory=NULL;
static void * ValueFLT64_gcmemory=NULL;
static void * ValueSTRING_gcmemory=NULL;

/**
* @english
Expand Down
1 change: 0 additions & 1 deletion API/Sources/gcmemory.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ This file is part of libECBUFR.


#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#include <string.h>
#include "private/gcmemory.h"
Expand Down