1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef VERSION_SOURCE
- #define VERSION_SOURCE
- #include <stdio.h>
- #include <stdlib.h>
- #include "../tools/version.h"
- void version ()
- {
- extern char const * program_name;
- printf ("%s ", program_name);
- printf (PROJECT "-");
- printf (VERSION " ");
- printf (RELEASE " ");
- printf ("ISO C ");
- printf (COMPANY " ");
- printf (COMPILE " ");
- printf (LICENSE "\n");
- return;
- }
- #endif
|