mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
15 lines
231 B
C
15 lines
231 B
C
void moveToPoint(int, int, int);
|
|
extern int ANTGlobalValue;
|
|
|
|
struct PointStruct {
|
|
double x, y;
|
|
};
|
|
|
|
typedef double real_t;
|
|
|
|
typedef struct {
|
|
struct PointStruct topLeft, bottomRight;
|
|
} RectStruct;
|
|
|
|
extern double will_be_private;
|