Bug 1389078 - Remove (unneeded) usage of internal libc header. r?jld draft
authorGian-Carlo Pascutto <gcp@mozilla.com>
Thu, 10 Aug 2017 16:55:01 +0200
changeset 644140 48c5b1c732a5c281e26803eeb59cc64ca2b7a082
parent 644139 f77126a6e7faf966d66591f5d135245040bf1ce0
child 725504 7c40f7e715183cb929abe4d005aeb588ba5be57d
push id73321
push usergpascutto@mozilla.com
push dateThu, 10 Aug 2017 14:55:36 +0000
reviewersjld
bugs1389078
milestone57.0a1
Bug 1389078 - Remove (unneeded) usage of internal libc header. r?jld MozReview-Commit-ID: E7oppAtGRfD
security/sandbox/linux/broker/SandboxBrokerRealpath.cpp
--- a/security/sandbox/linux/broker/SandboxBrokerRealpath.cpp
+++ b/security/sandbox/linux/broker/SandboxBrokerRealpath.cpp
@@ -30,18 +30,16 @@
  * This is originally from:
  * android-n-mr2-preview-1-303-gccec0f4c1
  * libc/upstream-freebsd/lib/libc/stdlib/realpath.c
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
 static char sccsid[] = "@(#)realpath.c	8.1 (Berkeley) 2/16/94";
 #endif /* LIBC_SCCS and not lint */
-#include <sys/cdefs.h>
-
 #include <sys/param.h>
 #include <sys/stat.h>
 
 #include <errno.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>