1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

The set_irq function needs size_t.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5602 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2012-03-11 10:46:04 +00:00
parent c55b983d52
commit 194a007710

View File

@ -38,6 +38,14 @@
/* We need size_t */
#ifndef _HAVE_size_t
#define _HAVE_size_t
typedef unsigned size_t;
#endif
/* Possible returns of getcpu() */
#define CPU_6502 0
#define CPU_65C02 1