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

Side by Side Diff: libraries/nacl-mounts/console/terminal_stubs.c

Issue 10377102: Added simplest device mount implementation (includes NullDevice and RandomDevice) (Closed) Base URL: http://naclports.googlecode.com/svn/trunk/src/
Patch Set: Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « libraries/nacl-mounts/base/KernelProxy.cc ('k') | libraries/nacl-mounts/dev/DevMount.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 #include <stdio.h> 7 #include <stdio.h>
8 8
9 9 struct _reent;
10 // Provide an implementation of _srget_r (newlib specific) in case its no there 10 // Provide an implementation of _srget_r (newlib specific) in case its no there
11 // to be wrapped. 11 // to be wrapped.
12 int __real___srget_r(struct _reent *ptr, register FILE *fp) { 12 int __real___srget_r(struct _reent *ptr, register FILE *fp) {
13 return 0; 13 return 0;
14 } 14 }
OLDNEW
« no previous file with comments | « libraries/nacl-mounts/base/KernelProxy.cc ('k') | libraries/nacl-mounts/dev/DevMount.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698