Multiplatform test

This commit is contained in:
2026-07-05 14:29:50 +01:00
parent 09eec850fa
commit fda56686a0
9 changed files with 82 additions and 0 deletions
+8
View File
@@ -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
+7
View File
@@ -0,0 +1,7 @@
// vim:fileencoding=utf-8:foldmethod=marker
#include <stdio.h>
void prSayHelloMac(void) {
printf("Hello from macOS\n");
}
+10
View File
@@ -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