[pisa-src] r1638 - trunk/pisacd/cdconf.c

  • From: Thomas Jansen <mithi@xxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Wed, 11 Nov 2009 12:35:04 +0100

Author: tjansen
Date: Wed Nov 11 12:35:04 2009
New Revision: 1638

Log:
Fixed -std=c99 warning:

pisacd/cdconf.c: In function ‘cdconf_set_debuglevel’:
pisacd/cdconf.c:189: error: implicit declaration of function ‘strncasecmp’

Modified:
   trunk/pisacd/cdconf.c

Modified: trunk/pisacd/cdconf.c
==============================================================================
--- trunk/pisacd/cdconf.c       Wed Nov 11 12:30:21 2009        (r1637)
+++ trunk/pisacd/cdconf.c       Wed Nov 11 12:35:04 2009        (r1638)
@@ -10,6 +10,8 @@
  * @date Jan. 2009
  */
 
+#include <strings.h>
+
 #include "libpisa/debug.h"
 #include "libpisa/cfg.h"
 #include "cdconf.h"

Other related posts:

  • » [pisa-src] r1638 - trunk/pisacd/cdconf.c - Thomas Jansen