From: Andre Noll Date: Sat, 7 Feb 2015 14:14:43 +0000 (+0100) Subject: interactive.c does not depend on curses.h. X-Git-Tag: v0.5.5~61 X-Git-Url: http://git.tuebingen.mpg.de/?a=commitdiff_plain;h=720908589d8c03c96c33f3033c0817c599a7c8b0;hp=720908589d8c03c96c33f3033c0817c599a7c8b0;p=paraslash.git interactive.c does not depend on curses.h. On systems where libreadline is installed but curses headers are not, the build fails because interactive.c, which includes curses.h, is attempted to be compiled. Fortunately, it is unnecessary to include this header, so this commit removes the include directive. However, we must include para.h before the readline headers because the latter depend on stdio.h. ---