| OLD | NEW |
| 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 #ifndef FLETCH_ENABLE_NATIVE_PROCESSES | 5 #ifndef DARTINO_ENABLE_NATIVE_PROCESSES |
| 6 | 6 |
| 7 #include "src/vm/natives.h" | 7 #include "src/vm/natives.h" |
| 8 #include "src/shared/assert.h" | 8 #include "src/shared/assert.h" |
| 9 | 9 |
| 10 namespace fletch { | 10 namespace dartino { |
| 11 | 11 |
| 12 BEGIN_NATIVE(NativeProcessSpawnDetached) { | 12 BEGIN_NATIVE(NativeProcessSpawnDetached) { |
| 13 UNIMPLEMENTED(); | 13 UNIMPLEMENTED(); |
| 14 return NULL; | 14 return NULL; |
| 15 } | 15 } |
| 16 END_NATIVE() | 16 END_NATIVE() |
| 17 | 17 |
| 18 } // namespace fletch | 18 } // namespace dartino |
| 19 | 19 |
| 20 #endif // !FLETCH_ENABLE_NATIVE_PROCESSES | 20 #endif // !DARTINO_ENABLE_NATIVE_PROCESSES |
| OLD | NEW |