git subrepo pull (merge) --force deps/libchdr
[pcsx_rearmed.git] / deps / libchdr / deps / zstd-1.5.5 / contrib / pzstd / utils / Portability.h
diff --git a/deps/libchdr/deps/zstd-1.5.5/contrib/pzstd/utils/Portability.h b/deps/libchdr/deps/zstd-1.5.5/contrib/pzstd/utils/Portability.h
new file mode 100644 (file)
index 0000000..ef1f86e
--- /dev/null
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ * All rights reserved.
+ *
+ * This source code is licensed under both the BSD-style license (found in the
+ * LICENSE file in the root directory of this source tree) and the GPLv2 (found
+ * in the COPYING file in the root directory of this source tree).
+ */
+
+#pragma once
+
+#include <algorithm>
+
+// Required for windows, which defines min/max, but we want the std:: version.
+#undef min
+#undef max