|
Revision 1, 0.6 kB
(checked in by jvw, 3 years ago)
|
|
Initial check-in for TxWin? version 1.02 sources
|
| Line | |
|---|
| 1 | #include <stdio.h> |
|---|
| 2 | |
|---|
| 3 | int main (int argc, char *argv[]); |
|---|
| 4 | |
|---|
| 5 | /*****************************************************************************/ |
|---|
| 6 | /* Main function of the program, handle commandline-arguments */ |
|---|
| 7 | /*****************************************************************************/ |
|---|
| 8 | int main (int argc, char *argv[]) |
|---|
| 9 | { |
|---|
| 10 | puts( "Hello OpenWatcom\n"); // printf() possible too, but |
|---|
| 11 | // will almost double the size |
|---|
| 12 | return 0; |
|---|
| 13 | } // end 'main' |
|---|
| 14 | /*---------------------------------------------------------------------------*/ |
|---|