| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Definitions of symbols that may be needed at runtime but aren't necessarily | 5 # Definitions of symbols that may be needed at runtime but aren't necessarily |
| 6 # present in the SDK chosen for compilation. | 6 # present in the SDK chosen for compilation. |
| 7 # | 7 # |
| 8 # This file provides symbols for _NSConcreteGlobalBlock and | 8 # This file provides symbols for _NSConcreteGlobalBlock and |
| 9 # _NSConcreteStackBlock, normally present in libSystem.dylib and provided by | 9 # _NSConcreteStackBlock, normally present in libSystem.dylib and provided by |
| 10 # by libclosure-38/data.c in Mac OS X 10.6 and later. It also provides symbols | 10 # by libclosure-38/data.c in Mac OS X 10.6 and later. It also provides symbols |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 130 |
| 131 # Some data-section symbols that might be referenced. | 131 # Some data-section symbols that might be referenced. |
| 132 | 132 |
| 133 .section __DATA,__data | 133 .section __DATA,__data |
| 134 | 134 |
| 135 DEFINE_GLOBAL_SYMBOL(___stdinp) | 135 DEFINE_GLOBAL_SYMBOL(___stdinp) |
| 136 DEFINE_GLOBAL_SYMBOL(___stdoutp) | 136 DEFINE_GLOBAL_SYMBOL(___stdoutp) |
| 137 DEFINE_GLOBAL_SYMBOL(___stderrp) | 137 DEFINE_GLOBAL_SYMBOL(___stderrp) |
| 138 | 138 |
| 139 #undef DEFINE_GLOBAL_SYMBOL | 139 #undef DEFINE_GLOBAL_SYMBOL |
| OLD | NEW |