repo.or.cz
/
isl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
introduce schedule tree representation
[isl.git]
/
isl_version.c
blob
a7ddd9dc8f913f4da4e4ce736187797189116598
1
#include
"isl_config.h"
2
#include
"gitversion.h"
3
4
const char
*
isl_version
(
void
)
5
{
6
return
GIT_HEAD_ID
7
#ifdef USE_GMP_FOR_MP
8
"-GMP"
9
#endif
10
#ifdef USE_IMATH_FOR_MP
11
"-IMath"
12
#endif
13
"
\n
"
;
14
}