20 lines
217 B
C
20 lines
217 B
C
|
#ifndef _ICEBOOT_H_
|
||
|
#define _ICEBOOT_H_
|
||
|
|
||
|
#include "uiuc_aircraft.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern double Simtime;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
void uiuc_iceboot( double dt);
|
||
|
|
||
|
|
||
|
#endif // _ICEBOOT_H_
|