X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=LaRCsim%2Fls_model.c;h=698b7c767a639448a3e70fc8c7c2bfc1aea11291;hb=f1ec224b73dc81dc487836bbd45b6e21c10df0a5;hp=ff8fd20f17b24d9cbc658264542913ba44dc2d59;hpb=a9fdc0e3415420bdfd2d90531447ddeb4390c2ad;p=flightgear.git diff --git a/LaRCsim/ls_model.c b/LaRCsim/ls_model.c index ff8fd20f1..698b7c767 100644 --- a/LaRCsim/ls_model.c +++ b/LaRCsim/ls_model.c @@ -37,6 +37,10 @@ CURRENT RCS HEADER INFO: $Header$ $Log$ +Revision 1.2 1998/01/19 18:40:27 curt +Tons of little changes to clean up the code and to remove fatal errors +when building with the c++ compiler. + Revision 1.1 1997/05/29 00:09:58 curt Initial Flight Gear revision. @@ -74,13 +78,14 @@ Initial Flight Gear revision. --------------------------------------------------------------------------*/ #include "ls_types.h" +#include "ls_model.h" +#include "default_model_routines.h" -void ls_model( SCALAR dt, int Initialize ) -{ - inertias( dt, Initialize ); - subsystems( dt, Initialize ); - aero( dt, Initialize ); - engine( dt, Initialize ); - gear( dt, Initialize ); +void ls_model( SCALAR dt, int Initialize ) { + inertias( dt, Initialize ); + subsystems( dt, Initialize ); + aero( dt, Initialize ); + engine( dt, Initialize ); + gear( dt, Initialize ); }