15 lines
141 B
C
15 lines
141 B
C
#ifndef START_H_
|
|
#define START_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void start();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* START_H_ */
|