Multiplatform test
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// vim:fileencoding=utf-8:foldmethod=marker
|
||||
|
||||
#ifndef MACOS_ALIASES_H
|
||||
#define MACOS_ALIASES_H
|
||||
|
||||
#define prSayHello prSayHelloMac
|
||||
|
||||
#endif // !MACOS_ALIASES_H
|
||||
@@ -0,0 +1,7 @@
|
||||
// vim:fileencoding=utf-8:foldmethod=marker
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
void prSayHelloMac(void) {
|
||||
printf("Hello from macOS\n");
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
// vim:fileencoding=utf-8:foldmethod=marker
|
||||
|
||||
#ifndef MACOS_API_H
|
||||
#define MACOS_API_H
|
||||
|
||||
#define prSayHello prSayHelloMac
|
||||
|
||||
void prSayHelloMac(void);
|
||||
|
||||
#endif // !MACOS_API_H
|
||||
Reference in New Issue
Block a user