浏览代码

tools: usb: ffs-test: switch to _DEFAULT_SOURCE

_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>
Felipe Balbi 8 年之前
父节点
当前提交
5abb9b91e8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/usb/ffs-test.c

+ 1 - 1
tools/usb/ffs-test.c

@@ -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>