Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright (c) 2014 The Native Client Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 #ifndef NATIVE_CLIENT_SRC_NONSFI_IRT_IRT_INTERFACES_H_ | |
| 8 #define NATIVE_CLIENT_SRC_NONSFI_IRT_IRT_INTERFACES_H_ 1 | |
| 9 | |
| 10 typedef void (*nacl_entry_func_t)(void *args); | |
| 11 | |
| 12 int nacl_irt_nonsfi_entry(int argc, char **argv, char **environ, | |
| 13 nacl_entry_func_t entry_func); | |
| 14 | |
| 15 #endif | |
| OLD | NEW |