#463 fixed a compiling bug on AIX.

This commit is contained in:
Zhang Xianyi 2014-11-10 14:39:56 +08:00
parent cbb23c46c2
commit 695e0fa649
1 changed files with 8 additions and 1 deletions

View File

@ -40,6 +40,8 @@ static int parallel = 1;
static int parallel = 0;
#endif
#ifdef NEEDBUNDERSCORE
int CNAME() {
return parallel;
}
@ -48,5 +50,10 @@ int NAME() {
return parallel;
}
#else
//The CNAME and NAME are the same.
int NAME() {
return parallel;
}
#endif