tools: usb: ffs-test: switch to _DEFAULT_SOURCE
authorFelipe Balbi <felipe.balbi@linux.intel.com>
Tue, 17 Jan 2017 13:04:07 +0000 (15:04 +0200)
committerFelipe Balbi <felipe.balbi@linux.intel.com>
Tue, 24 Jan 2017 09:04:16 +0000 (11:04 +0200)
_BSD_SOURCE is deprecated and gives a build warning. Let's use
_DEFAULT_SOURCE instead.

Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
tools/usb/ffs-test.c

index 88d5e71..64fc72a 100644 (file)
@@ -22,7 +22,7 @@
 /* $(CROSS_COMPILE)cc -Wall -Wextra -g -o ffs-test ffs-test.c -lpthread */
 
 
-#define _BSD_SOURCE /* for endian.h */
+#define _DEFAULT_SOURCE /* for endian.h */
 
 #include <endian.h>
 #include <errno.h>