[xiph-commits] r3254 - liboggz/trunk/src/tools

laser13 at svn.annodex.net laser13 at svn.annodex.net
Tue Oct 9 07:49:06 PDT 2007


Author: laser13
Date: 2007-10-09 07:49:06 -0700 (Tue, 09 Oct 2007)
New Revision: 3254

Modified:
   liboggz/trunk/src/tools/oggz-scan.c
   liboggz/trunk/src/tools/oggzrip.c
Log:
Use string.h only on Lunix systems. Appropriate #ifdef added for oggz-scan.c and oggzrip.c

Modified: liboggz/trunk/src/tools/oggz-scan.c
===================================================================
--- liboggz/trunk/src/tools/oggz-scan.c	2007-10-08 09:57:54 UTC (rev 3253)
+++ liboggz/trunk/src/tools/oggz-scan.c	2007-10-09 14:49:06 UTC (rev 3254)
@@ -35,7 +35,10 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+
+#ifndef WIN32
 #include <strings.h>
+#endif
 
 #include <getopt.h>
 #include <errno.h>

Modified: liboggz/trunk/src/tools/oggzrip.c
===================================================================
--- liboggz/trunk/src/tools/oggzrip.c	2007-10-08 09:57:54 UTC (rev 3253)
+++ liboggz/trunk/src/tools/oggzrip.c	2007-10-09 14:49:06 UTC (rev 3254)
@@ -39,7 +39,9 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#ifndef WIN32
 #include <strings.h>
+#endif
 #include <fcntl.h>
 #include <assert.h>
 



More information about the commits mailing list