board_internal.h
1 /*
2  * Copyright (C) 2013, 2014 Ludwig Knüpfer
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
9 #ifndef BOARD_INTERNAL_H
10 #define BOARD_INTERNAL_H
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 extern int _native_null_out_file;
17 extern int _native_null_in_pipe[2];
18 void board_init(void);
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif /* BOARD_INTERNAL_H */
board_init
void board_init(void)
Board level initialization.