mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-03 12:21:37 +00:00
15 lines
303 B
C
15 lines
303 B
C
#include "pal.h"
|
|
#include "pal_debug.h"
|
|
|
|
/* prototype required due to -Wmissing-prototypes */
|
|
void preload_func2(void);
|
|
|
|
void preload_func2(void) {
|
|
pal_printf("Preloaded Function 2 Called\n");
|
|
}
|
|
|
|
int main(int argc, char** argv, char** envp) {
|
|
pal_printf("Binary 2 Preloaded\n");
|
|
return 0;
|
|
}
|