aboutsummaryrefslogtreecommitdiff
path: root/src/lib9
diff options
context:
space:
mode:
authorDavid du Colombier <0intro@gmail.com>2016-05-07 17:36:32 +0200
committerDavid du Colombier <0intro@gmail.com>2016-11-20 09:37:58 +0000
commit657f699ef7e5a91a529337cac76ed48c68a28583 (patch)
treee1b11cad08c0910e4f7c3ff305900bf233b6ffb2 /src/lib9
parent1b68dbef7b7dd7c4aa2b5755c1399cf66d2ea6fa (diff)
downloadplan9port-657f699ef7e5a91a529337cac76ed48c68a28583.tar.gz
plan9port-657f699ef7e5a91a529337cac76ed48c68a28583.tar.bz2
plan9port-657f699ef7e5a91a529337cac76ed48c68a28583.zip
include: define _DEFAULT_SOURCE
Since glibc 2.20, the _BSD_SOURCE and _SVID_SOURCE macros are deprecated in favor of the _DEFAULT_SOURCE macro. See https://sourceware.org/glibc/wiki/Release/2.20#Packaging_Changes Change-Id: I18dd6a698f3f5aa51d1e45bf53b031bb061e17e8 Reviewed-on: https://plan9port-review.googlesource.com/1500 Reviewed-by: David du Colombier <0intro@gmail.com>
Diffstat (limited to 'src/lib9')
-rw-r--r--src/lib9/utf/utfecpy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib9/utf/utfecpy.c b/src/lib9/utf/utfecpy.c
index cf3535fb..bab8136c 100644
--- a/src/lib9/utf/utfecpy.c
+++ b/src/lib9/utf/utfecpy.c
@@ -12,6 +12,7 @@
* OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
*/
#define _BSD_SOURCE 1 /* memccpy */
+#define _DEFAULT_SOURCE 1
#include <stdarg.h>
#include <string.h>
#include "plan9.h"