mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
15 lines
206 B
C
15 lines
206 B
C
|
|
typedef struct {
|
|
/*! Some clang-style comments */
|
|
long width;
|
|
/*!
|
|
* Some clang-style comments
|
|
*/
|
|
long height;
|
|
|
|
} NUPixelSize;
|
|
|
|
#if __swift__ >= 50000
|
|
void show_only_for_swift_4(void);
|
|
#endif
|