mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-05 21:31:36 +00:00
14 lines
227 B
C
14 lines
227 B
C
#include "pal.h"
|
|
#include "pal_debug.h"
|
|
|
|
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;
|
|
}
|