aboutsummaryrefslogtreecommitdiff
path: root/utime.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-09-21 00:35:23 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-09-21 00:35:23 +0000
commit7030360902959effa21c357475ad9f0a81f57b14 (patch)
tree58a4b7e465de1c88789e2bb13af3b3af68646822 /utime.c
parentfb4342642d13f924131af8fa4f706f1813a2ce4b (diff)
cleaned up Windows macros replacing NT with _MSC_VER and _WIN32 where appropriate
svn path=/trunk/externals/cxc/; revision=12415
Diffstat (limited to 'utime.c')
-rw-r--r--utime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utime.c b/utime.c
index 429e90d..ca7987e 100644
--- a/utime.c
+++ b/utime.c
@@ -4,7 +4,7 @@
*/
#include <m_pd.h>
-#ifdef NT
+#ifdef _WIN32
#include <windows.h>
#else
#include <sys/time.h>
@@ -29,7 +29,7 @@ static void *utime_new(t_symbol *s, int argc, t_atom *argv) {
return (x);
}
-#ifndef NT
+#ifndef _WIN32
static void utime_bang(t_utime *x)
{
struct timeval myutime;