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

Unified Diff: sysdeps/nacl/nacl_stat.h

Issue 6026005: Fix __fxstat which is called from fstat. Remove obsolete fstat64. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-glibc.git@master
Patch Set: Created 10 years 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 | « sysdeps/nacl/fxstat.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sysdeps/nacl/nacl_stat.h
diff --git a/sysdeps/nacl/nacl_stat.h b/sysdeps/nacl/nacl_stat.h
index 3da2ef2859314764781349a0d00901337f8f1cb8..ce6c521627e421867329f6d00782a0a3cec3b7fe 100644
--- a/sysdeps/nacl/nacl_stat.h
+++ b/sysdeps/nacl/nacl_stat.h
@@ -98,5 +98,7 @@ struct nacl_abi_stat { /* must be renamed when ABI is exported */
/* Converts struct nacl_abi_stat to struct stat64. Implemented in fxstat64.c */
void __nacl_abi_stat_to_stat64 (struct nacl_abi_stat *nacl_st,
struct stat64 *st);
-
+/* Converts struct nacl_abi_stat to struct stat. Implemented in fxstat.c */
+void __nacl_abi_stat_to_stat (struct nacl_abi_stat *nacl_st,
eaeltsin 2010/12/20 15:46:17 Please remove declaration from here, make this sta
+ struct stat *st);
#endif
« no previous file with comments | « sysdeps/nacl/fxstat.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698