]> pd.if.org Git - pdclib.old/blob - helloworld.c
Use the GCC ability to place each function/piece of data in its' own section, and...
[pdclib.old] / helloworld.c
1 #include <stdio.h>
2
3 // This test program is provided to enable a quick test of PDCLib's console I/O
4 // functions
5
6 int main(int argc, char** argv)
7 {
8     printf("Hello world\n");
9 }