summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGisle Vanem <gvanem@yahoo.no>2014-10-01 20:43:12 +0300
committerEli Zaretskii <eliz@gnu.org>2014-10-01 20:43:12 +0300
commit7df0fe77d8d56d8948f27ef2d2cd9e2d35659931 (patch)
tree769d92176fbc727bc2946baff4bc48c346b49d46
parent9fc787c65882c1e6569b8314d696fd1fca9b058b (diff)
downloadgunmake-7df0fe77d8d56d8948f27ef2d2cd9e2d35659931.tar.gz
Fix last commit.
-rw-r--r--makeint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/makeint.h b/makeint.h
index eefcde9..fdcae75 100644
--- a/makeint.h
+++ b/makeint.h
@@ -350,7 +350,7 @@ char *strsignal (int signum);
# include <malloc.h>
# define pipe(_p) _pipe((_p), 512, O_BINARY)
# define kill(_pid,_sig) w32_kill((_pid),(_sig))
-/* MSVC doesn't have ftruncate. */
+/* MSVC and Watcom C don't have ftruncate. */
# if defined(_MSC_VER) || defined(__WATCOMC__)
# define ftruncate(_fd,_len) _chsize(_fd,_len)
# endif