Skip to content

Commit

Permalink
Fix PCEAS compilation on MacOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrandwood committed Nov 29, 2024
1 parent 6074ac1 commit 1d37417
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mkit/as/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -316,14 +316,14 @@ typedef struct t_symbol {
int size;
int vram;
int data_size;
unsigned char data_type;
signed char data_type;
unsigned char section;
unsigned char overlay;
unsigned char page;
unsigned char reason;
unsigned char type;
unsigned char flags;
unsigned char palette;
signed char palette;
} t_symbol;

typedef struct t_branch {
Expand Down
1 change: 1 addition & 0 deletions src/mkit/as/input.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/stat.h>
#include "defs.h"
#include "externs.h"
Expand Down

0 comments on commit 1d37417

Please sign in to comment.