Fix compile error with ndk-build

This commit is contained in:
Jeremy Lakeman 2012-02-27 12:15:52 +10:30
parent 98c7593ef6
commit 6d3e720784

2
dna.c
View File

@ -380,9 +380,11 @@ void signal_handler( int signal ) {
break;
#endif
#ifdef SIGIO
#if SIGIO != SIGPOLL
case SIGIO: snprintf(signalName,63,"SIG %s (%d)","input/output possible signal",signal);
break;
#endif
#endif
#ifdef SIGXCPU
case SIGXCPU: snprintf(signalName,63,"SIG %s (%d)","exceeded CPU time limit",signal);
break;