mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
131 B
C
11 lines
131 B
C
#ifndef fnptr_h
|
|
#define fnptr_h
|
|
|
|
#include <stddef.h>
|
|
|
|
typedef struct {
|
|
void (* _Nonnull fnptr)(size_t *);
|
|
} Container;
|
|
|
|
#endif
|