Add strings.h include to capabilities.h for ffs() function prototype

On Mingw32 the ffs() function was not declared due to missing header
include

* src/conf/capabilities.c: The ffs() function lives in strings.h
This commit is contained in:
Daniel P. Berrange 2011-11-22 09:45:47 +00:00
parent c6ba523961
commit 720442e245

View File

@ -23,6 +23,8 @@
#include <config.h>
#include <strings.h>
#include "capabilities.h"
#include "buf.h"
#include "memory.h"