(1) I am trying to find the source code for the system time shown in the Deskbar
since I am working on some app that should run in the background.
Anyone knows where this part of code is located in Haiku code tree?
***********************************************************************************
(2)
#include
int main()
{
printf("Test!");
return 0;
}
I got the following result:
/boot/develop/lib/x86/start_dyn.o: in function '_start':
start_dyn.c:(.text + 0x57): undefined reference to 'main'
collect2: ld returned 1 exit status
If I want to output something to the stdout, what should I write? Does it mean
that any app on Haiku has to be GUI-based? By the way I use Paladin as my IDE.