mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
fix https://github.com/ossrs/srs/issues/3155 Build srt-1-fit fails with `standard attributes in middle of decl-specifiers` on GCC 12,Arch Linux. See https://github.com/Haivision/srt/releases/tag/v1.5.3
10 lines
232 B
C
10 lines
232 B
C
/* Copyright © 2023 Steve Lhomme */
|
|
/* SPDX-License-Identifier: ISC */
|
|
#include <windows.h>
|
|
#if !defined(_WIN32_WINNT) || _WIN32_WINNT < 0x0600 /* _WIN32_WINNT_VISTA */
|
|
#error NOPE
|
|
#endif
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|