1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 23:52:26 +00:00

Merge pull request #1016 from TomHarte/unistd

Eliminate usages of unistd.h.
This commit is contained in:
Thomas Harte 2022-03-25 17:04:29 -04:00 committed by GitHub
commit ee6470708b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -9,6 +9,7 @@
#include <algorithm>
#include <array>
#include <atomic>
#include <cstddef>
#include <cstdio>
#include <cstdlib>
#include <cstring>
@ -17,7 +18,6 @@
#include <map>
#include <memory>
#include <sys/stat.h>
#include <unistd.h>
#include <SDL2/SDL.h>

View File

@ -9,10 +9,10 @@
#ifndef MacintoshVolume_hpp
#define MacintoshVolume_hpp
#include <vector>
#include <cstddef>
#include <cstdint>
#include <sys/types.h>
#include <unistd.h>
#include <vector>
namespace Storage {
namespace MassStorage {