mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 19:38:12 +00:00
12 lines
246 B
Objective-C
12 lines
246 B
Objective-C
/*
|
|
* Copyright (c) 2023, Nico Weber <thakis@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
// Several AK types conflict with MacOS types.
|
|
#define FixedPoint FixedPointMacOS
|
|
#import <Cocoa/Cocoa.h>
|
|
#undef FixedPoint
|