Subversion Repositories Tewi

Rev

Rev 18 | Rev 33 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 18 Rev 27
Line 1... Line 1...
1
/* $Id: version.c 18 2024-09-14 00:42:40Z nishi $ */
1
/* $Id: version.c 27 2024-09-14 15:14:49Z nishi $ */
2
 
2
 
3
#define SOURCE
3
#define SOURCE
4
 
4
 
5
#include "tw_version.h"
5
#include "tw_version.h"
6
 
6
 
7
const char* tw_version = "0.00";
7
const char* tw_version = "0.00";
8
 
8
 
9
const char* tw_platform =
9
const char* tw_platform =
10
#if defined(PLATFORM)
10
#if defined(PLATFORM)
11
    PLATFORM
11
    PLATFORMM
12
#elif defined(__NetBSD__)
12
#elif defined(__NetBSD__)
13
    "NetBSD"
13
    "NetBSD"
-
 
14
#elif defined(__linux__)
-
 
15
    "Linux"
14
#elif defined(__MINGW32__)
16
#elif defined(__MINGW32__)
15
    "Windows"
17
    "Windows"
16
#else
18
#else
17
    "Unix"
19
    "Unix"
18
#endif
20
#endif