summaryrefslogtreecommitdiffstats
path: root/trunk/source/libutil.cc
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/source/libutil.cc')
-rw-r--r--trunk/source/libutil.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/trunk/source/libutil.cc b/trunk/source/libutil.cc
index 93b714ff49..5434eb3b0d 100644
--- a/trunk/source/libutil.cc
+++ b/trunk/source/libutil.cc
@@ -1,6 +1,7 @@
/*
* File: libutil.cc
* Summary: Functions that may be missing from some systems
+ * Written by: ?
*
* Modified for Crawl Reference by $Author$ on $Date$
*
@@ -19,8 +20,8 @@ void get_input_line( char *const buff, int len )
{
buff[0] = '\0'; // just in case
-#if defined(LINUX)
- get_input_line_from_curses( buff, len ); // inplemented in liblinux.cc
+#if defined(UNIX)
+ get_input_line_from_curses( buff, len ); // implemented in libunix.cc
#elif defined(MAC) || defined(WIN32CONSOLE)
getstr( buff, len ); // implemented in libmac.cc
#else