Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: ports/glibc-compat/src/stubs.c

Issue 557473002: Add working realpath implementation to glibc-compat (Closed) Base URL: https://naclports.googlecode.com/svn/trunk/src
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ports/glibc-compat/src/realpath.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ports/glibc-compat/src/stubs.c
diff --git a/ports/glibc-compat/src/stubs.c b/ports/glibc-compat/src/stubs.c
index ed024b58f2873958713d88482a4162e0837f1b45..e2f4f406666503e2a36e6e4532d95e5d80897137 100644
--- a/ports/glibc-compat/src/stubs.c
+++ b/ports/glibc-compat/src/stubs.c
@@ -440,11 +440,6 @@ int connect(int sockfd, const struct sockaddr *addr,
UNIMPLEMENTED_FATAL();
}
-char* realpath(const char* path, char* resolved) __attribute__ ((weak));
-char* realpath(const char* path, char* resolved) {
- UNIMPLEMENTED_NOSYS_RTN(NULL);
-}
-
int getaddrinfo(const char *, const char *, const struct addrinfo *,
struct addrinfo **) __attribute__ ((weak));
int getaddrinfo(const char *node, const char *service,
« no previous file with comments | « ports/glibc-compat/src/realpath.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698