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
commit89da9fea9a9f1c9dec817b1b162374e7c96ea777 (patch)
tree769d92176fbc727bc2946baff4bc48c346b49d46
parent89bb2df5aea574b19f53e60937fd616e599f857a (diff)
downloadmake-89da9fea9a9f1c9dec817b1b162374e7c96ea777.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 eefcde9b..fdcae75b 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