diff options
author | Daniel Heckenberg <dheck@users.sourceforge.net> | 2003-03-09 11:10:53 +0000 |
---|---|---|
committer | Daniel Heckenberg <dheck@users.sourceforge.net> | 2003-03-09 11:10:53 +0000 |
commit | 298484e6fe519f5aecf2e0ade6fe0e66bcccfb48 (patch) | |
tree | 903e731df8603b4407797eb9c592219bacf5fdb6 /control | |
parent | 03c3eedf6c0804cb5aacdc06c0c38ea7141e37de (diff) |
Minor changes for compilation using Visual C++ 6.0 (SP3) under Windows
ncluding:
- no array declaration with variable size
- fixed signed/unsigned comparison warnings
svn path=/trunk/externals/ggee/; revision=460
Diffstat (limited to 'control')
-rwxr-xr-x | control/serial_bird.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/control/serial_bird.c b/control/serial_bird.c index 25a837d..410202a 100755 --- a/control/serial_bird.c +++ b/control/serial_bird.c @@ -2,6 +2,7 @@ #include <m_pd.h>
+#include <string.h>
#define DEBUG(x)
/*#define DEBUG(x) x*/
|