#463 fixed a compiling bug on AIX.
This commit is contained in:
parent
cbb23c46c2
commit
695e0fa649
|
@ -40,6 +40,8 @@ static int parallel = 1;
|
||||||
static int parallel = 0;
|
static int parallel = 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef NEEDBUNDERSCORE
|
||||||
int CNAME() {
|
int CNAME() {
|
||||||
return parallel;
|
return parallel;
|
||||||
}
|
}
|
||||||
|
@ -48,5 +50,10 @@ int NAME() {
|
||||||
return parallel;
|
return parallel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
//The CNAME and NAME are the same.
|
||||||
|
int NAME() {
|
||||||
|
return parallel;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue