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

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

Issue 150413008: Initial support for gambit-scheme v4.7.0 Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Add support for pnacl Created 6 years, 10 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/gambc_ppapi/scm/pi.scm ('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/getprotobyname_r.c
diff --git a/ports/glibc-compat/src/getprotobyname_r.c b/ports/glibc-compat/src/getprotobyname_r.c
index 9c7253d936092003c56e5489bc6265cf19727dd8..0becf794294abf90bec1ee9e6a9f977e527d3973 100644
--- a/ports/glibc-compat/src/getprotobyname_r.c
+++ b/ports/glibc-compat/src/getprotobyname_r.c
@@ -9,6 +9,10 @@ struct protoent *getprotobyname(const char *name) {
return NULL;
}
+struct protoent *getprotobynumber(int n) {
+ return NULL;
+}
+
int __getprotobyname_r(const char *name,
struct protoent *result_buf, char *buf,
size_t buflen, struct protoent **result)
« no previous file with comments | « ports/gambc_ppapi/scm/pi.scm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698