Add #include guards around bridging header

This commit is contained in:
Doug Gregor
2025-09-19 20:09:59 -07:00
parent 52ebe09cdd
commit d04e6dd881

View File

@@ -1,6 +1,11 @@
#ifndef C_BRIDGING_HEADER_H
#define C_BRIDGING_HEADER_H
#include "ctypes.h"
#include "macros.h"
typedef struct {
double x, y;
} MyPoint;
#endif