diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-05-25 19:42:05 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-05-25 19:42:05 +0000 |
commit | 0c6fd4b32921b8da7ece5011cc4888a0a520dcd1 (patch) | |
tree | 3260ee74e005f156590a77938cb482ed49fc3277 /control | |
parent | 7f502b606e94b9a399e33df8613fdf9fd64126c6 (diff) |
ifdef'ed so it doesn't get compiled on Windows, since it doesn't compile anyway
svn path=/trunk/externals/ggee/; revision=5135
Diffstat (limited to 'control')
-rwxr-xr-x | control/shell.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/control/shell.c b/control/shell.c index 64cd6d8..79d89ca 100755 --- a/control/shell.c +++ b/control/shell.c @@ -1,10 +1,9 @@ /* (C) Guenter Geiger <geiger@epy.co.at> */ +/* this doesn't run on Windows (yet?) */ +#ifndef _WIN32 + #include <m_pd.h> -#ifdef _MSC_VER -#pragma warning( disable : 4244 ) -#pragma warning( disable : 4305 ) -#endif #include <unistd.h> #include <stdlib.h> @@ -310,3 +309,6 @@ void shell_setup(void) } +#endif /* _WIN32 */ + + |