diff --git a/doc/funcref.sgml b/doc/funcref.sgml index d50c5479b..cf46ae7d7 100644 --- a/doc/funcref.sgml +++ b/doc/funcref.sgml @@ -5113,7 +5113,7 @@ be used in presence of a prototype. #include -extern char comlynx[]; +extern void lynx_comlynx[]; static void initialize(){ struct ser_params params = { @@ -5123,7 +5123,7 @@ static void initialize(){ SER_PAR_MARK, SER_HS_NONE }; - ser_install(&comlynx); // This will activate the ComLynx + ser_install(lynx_comlynx); // This will activate the ComLynx CLI(); ser_open(&params); } @@ -5179,9 +5179,9 @@ used in presence of a prototype. , -extern char lynxser[]; //Include the driver statically instead of loading it. +extern void lynx_comlynx[]; //Include the driver statically instead of loading it. -ser_install(&lynxser); +ser_install(lynx_comlynx); @@ -5246,7 +5246,7 @@ be used in presence of a prototype. #include -extern char comlynx[]; +extern void lynx_comlynx[]; static void initialize(){ struct ser_params params = { @@ -5256,7 +5256,7 @@ static void initialize(){ SER_PAR_MARK, SER_HS_NONE }; - ser_install(&comlynx); // This will activate the ComLynx + ser_install(lynx_comlynx); // This will activate the ComLynx CLI(); ser_open(&params); } @@ -6611,8 +6611,7 @@ name="tgi_clear">/ after -extern char lynxtgi[]; //Include the driver statically instead of loading it. -tgi_install(&lynxtgi); +tgi_install(tgi_static_stddrv); //Include the driver statically instead of loading it. tgi_init(); //Set up the default palette and clear the screen. @@ -6639,9 +6638,7 @@ used in presence of a prototype. , -extern char lynxtgi[]; //Include the driver statically instead of loading it. - -tgi_install(&lynxtgi); +tgi_install(tgi_static_stddrv); //Include the driver statically instead of loading it. tgi_init(); //Set up the default palette and clear the screen.