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