#include <stdio.h>
#include <stdlib.h>

#include <TargetConditionals.h>

int main ()
{
#if TARGET_CPU_X86
   printf("\nHello world (from i386)!\n");
#endif

#if TARGET_CPU_PPC
   printf("\nHello world (from PPC)!\n");
#endif
   exit(0);
}

