1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 17:56:21 +00:00

Made the overlay demo programs compile for CBM targets again.

<conio.h> includes target-specific headers; so, we didn't bother to include <cbm.h> where it is needed.  But, '#include <conio.h>' was removed from some files; so now, we must include <cbm.h> explicitly.
This commit is contained in:
Greg King 2016-06-19 17:38:37 -04:00
parent c9e9679a06
commit 5d9f4dc89d
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#else #else
#include <cbm.h>
#include <device.h> #include <device.h>
#endif #endif

View File

@ -15,6 +15,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#else #else
#include <cbm.h>
#include <device.h> #include <device.h>
#endif #endif