diff options
author | Max Horn | 2007-03-08 20:42:40 +0000 |
---|---|---|
committer | Max Horn | 2007-03-08 20:42:40 +0000 |
commit | eeda548204e78e7bde38396e7de094b75aed6931 (patch) | |
tree | 3acc0f140dbbb9b607899ef5cfba44aa3228ee43 /backends/midi | |
parent | 948213d5a0c2e69b2df7a61d3899443c309ffeb8 (diff) | |
download | scummvm-rg350-eeda548204e78e7bde38396e7de094b75aed6931.tar.gz scummvm-rg350-eeda548204e78e7bde38396e7de094b75aed6931.tar.bz2 scummvm-rg350-eeda548204e78e7bde38396e7de094b75aed6931.zip |
Explicitly #include fcntl.h and unistd.h for the open/write/close syscalls
svn-id: r26026
Diffstat (limited to 'backends/midi')
-rw-r--r-- | backends/midi/seq.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/midi/seq.cpp b/backends/midi/seq.cpp index f570abb685..9dae348dad 100644 --- a/backends/midi/seq.cpp +++ b/backends/midi/seq.cpp @@ -32,6 +32,9 @@ #include "sound/mpu401.h" #include "common/util.h" +#include <fcntl.h> +#include <unistd.h> + //////////////////////////////////////// // // Unix dev/sequencer driver |