Fix for the problem that SDL applications exited
[AROS-Contrib.git] / gnu / make / version.c
blob8c32525d23d8710f3025df0859d7549bb5326682
1 /* We use <config.h> instead of "config.h" so that a compilation
2 using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
3 (which it would do because make.h was found in $srcdir). */
4 #include <config.h>
6 #ifndef MAKE_HOST
7 # define MAKE_HOST "unknown"
8 #endif
9 #ifndef VERSION
10 #define VERSION "380"
11 #endif
12 char *version_string = VERSION;
13 char *make_host = MAKE_HOST;
16 Local variables:
17 version-control: never
18 End: