You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
498 B
C
21 lines
498 B
C
13 years ago
|
#include <errno.h>
|
||
|
#include <math.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
/*
|
||
|
* === FUNCTION ======================================================================
|
||
|
* Name: main
|
||
|
* Description: main function
|
||
|
* =====================================================================================
|
||
|
*/
|
||
|
int
|
||
|
main ( int argc, char *argv[] )
|
||
|
{
|
||
|
printf ("\nProgram %s\n\n", argv[0] );
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
} /* ---------- end of function main ---------- */
|
||
|
|