Nico Huber has uploaded this change for review.

View Change

spi: Define _XOPEN_SOURCE to get ffs() from strings.h

Fixes build with Musl libc.

Change-Id: I92b69300a302c4491e234666ac371027571801c9
Signed-off-by: Nico Huber <nico.h@gmx.de>
---
M spi.c
1 file changed, 2 insertions(+), 0 deletions(-)

git pull ssh://review.coreboot.org:29418/flashrom refs/changes/51/22951/1
diff --git a/spi.c b/spi.c
index 894f73f..c306ac3 100644
--- a/spi.c
+++ b/spi.c
@@ -22,6 +22,8 @@
* Contains the generic SPI framework
*/

+#define _XOPEN_SOURCE 700 /* for ffs() */
+
#include <strings.h>
#include <string.h>
#include "flash.h"

To view, visit change 22951. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: 1.0.x
Gerrit-MessageType: newchange
Gerrit-Change-Id: I92b69300a302c4491e234666ac371027571801c9
Gerrit-Change-Number: 22951
Gerrit-PatchSet: 1
Gerrit-Owner: Nico Huber <nico.h@gmx.de>