diff options
author | JP Cimalando <jpcima@users.noreply.github.com> | 2018-04-13 14:22:05 +0200 |
---|---|---|
committer | JP Cimalando <jpcima@users.noreply.github.com> | 2018-04-13 14:22:05 +0200 |
commit | c93abf82c639ad0fe65e6f30d86ecd9d2c13cb56 (patch) | |
tree | ead34ce6861e489d24782b412bba47be9f64acf8 | |
parent | 9e12c2b36589a9d1bf8d0b580cf7321e482a58cf (diff) | |
download | libADLMIDI-c93abf82c639ad0fe65e6f30d86ecd9d2c13cb56.tar.gz libADLMIDI-c93abf82c639ad0fe65e6f30d86ecd9d2c13cb56.tar.bz2 libADLMIDI-c93abf82c639ad0fe65e6f30d86ecd9d2c13cb56.zip |
Mac OS needs sys/types.h for ssize_t
-rw-r--r-- | src/chips/dosbox/dbopl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/chips/dosbox/dbopl.h b/src/chips/dosbox/dbopl.h index b5b2ba1..13c606f 100644 --- a/src/chips/dosbox/dbopl.h +++ b/src/chips/dosbox/dbopl.h @@ -20,6 +20,7 @@ /* BEGIN MIDIPLAY GLUE */ #include <stdint.h> #include <stdlib.h> +#include <sys/types.h> typedef unsigned long Bitu; typedef signed long Bits; typedef unsigned Bit32u; |