summaryrefslogtreecommitdiff
path: root/tests/projects/swift/modulemap/src/hello.h
blob: 80849f5df0b6e84aeb8a57e3e0deac724bab4d97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

#ifdef __cplusplus
extern "C" {
#endif
    void say1(char const* s);
#ifdef __cplusplus
}
#endif
static inline void say2(char const* s) {
    printf("%s\n", s);
}