http://www.berklix.com/~jhs/src/bsd/fixes/FreeBSD/src/gen/usr.bin/fmt/fmt.c.modern_c.REL=12.4-RELEASE.diff
Created 2022-09-04

*** 9.2-RELEASE/src/usr.bin/fmt/fmt.c	Tue May 25 00:32:23 2010
--- new-generic/src/usr.bin/fmt/fmt.c	Tue May 25 02:33:22 2010
***************
*** 629,636 ****
   *	& Maybe add lots of other stuff like French cedillas, etc ?
   *	Add French 
   */
! int isprintext(ch)	/* For before 5.3-RELEASE */
! 	int ch;
  	{
  	if ( isprint(ch) ||
  		//	Hex Dec Oct Languag Character
--- 629,639 ----
   *	& Maybe add lots of other stuff like French cedillas, etc ?
   *	Add French 
   */
! #if 0
! // int isprintext(ch)	/* For before 5.3-RELEASE */
! 	// int ch;
! static int isprintext(int ch)	/* For before 5.3-RELEASE */
! 	// int ch;
  	{
  	if ( isprint(ch) ||
  		//	Hex Dec Oct Languag Character
***************
*** 649,657 ****
  		( ch == 0xFC /* 252  0374 German u: */ )
  	   ) return(1) ; else return(0) ;
  	}
  #if /*{*/ ( __FreeBSD__ > 4 /* iswprint not in FreeBSD_4 library */ )
! int iswprintext(ch) /*5.3-RELEASE switched from calling isprint to iswprint*/
! 	wint_t ch;
  	{
  	if ( iswprint(ch) ||
  		( ch == 0xD4 /* 212  0324 German A: Guessed */ ) ||
--- 652,663 ----
  		( ch == 0xFC /* 252  0374 German u: */ )
  	   ) return(1) ; else return(0) ;
  	}
+ #endif
  #if /*{*/ ( __FreeBSD__ > 4 /* iswprint not in FreeBSD_4 library */ )
! // int iswprintext(ch) /*5.3-RELEASE switched from calling isprint to iswprint*/
! 	// wint_t ch;
! static int iswprintext(wint_t ch) /*5.3-RELEASE switched from calling isprint to iswprint*/
! 	// wint_t ch;
  	{
  	if ( iswprint(ch) ||
  		( ch == 0xD4 /* 212  0324 German A: Guessed */ ) ||
