diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-04-26 20:54:26 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-04-26 20:54:26 +0000 |
commit | 8c0287ea91b042d5935311a045b4707c233689a2 (patch) | |
tree | 0f35a008af0a4c6e2f148746bb9bdbde505c99cd | |
parent | b29fabf6718d1ab1f9501221055eddcc35d98b8b (diff) |
I put in the wrong MACRO before, used _MSC_VER (MSVC) when I should have used _WIN32
svn path=/trunk/externals/iemlib/; revision=5004
-rw-r--r-- | src/iem_mp3/sigmp3play.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iem_mp3/sigmp3play.c b/src/iem_mp3/sigmp3play.c index a79068c..e51cc07 100644 --- a/src/iem_mp3/sigmp3play.c +++ b/src/iem_mp3/sigmp3play.c @@ -35,7 +35,7 @@ iem_mp3 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2005 #include <fcntl.h> #include <math.h> -#ifndef _MSC_VER +#ifndef _WIN32 #include <sys/signal.h> #include <unistd.h> #endif |