OLD | NEW |
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 } |
OLD | NEW |