1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 15:36:34 +00:00

Use inttypes.h to provide uintptr_t/intptr_t of machine dependent size for UNSIGNED/INT declarations

This commit is contained in:
Nick Briggs 2022-01-22 15:16:36 -08:00
parent fa08a08648
commit 008ce703e7

View File

@ -11,6 +11,7 @@
/* */
/************************************************************************/
#include <inttypes.h>
#include "maiko/platform.h"
/************************************************************************/
@ -187,8 +188,8 @@ error Must specify RELEASE to build Medley.
/* Set up defaults */
#define UNALIGNED_FETCH_OK
typedef unsigned long UNSIGNED;
typedef long INT;
typedef uintptr_t UNSIGNED;
typedef intptr_t INT;