| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_GDBJIT_LINUX_H_ | 5 #ifndef VM_GDBJIT_OPENBSD_H_ |
| 6 #define VM_GDBJIT_LINUX_H_ | 6 #define VM_GDBJIT_OPENBSD_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 extern "C" { | 10 extern "C" { |
| 11 void addDynamicSection(const char* symfile_addr, uint64_t symfile_size); | 11 void addDynamicSection(const char* symfile_addr, uint64_t symfile_size); |
| 12 void deleteDynamicSections(); | 12 void deleteDynamicSections(); |
| 13 }; | 13 }; |
| 14 | 14 |
| 15 #endif // VM_GDBJIT_LINUX_H_ | 15 #endif // VM_GDBJIT_OPENBSD_H_ |
| OLD | NEW |