svn commit: r208949 - stable/8/contrib/gdtoa

Ulrich Spoerlein uqs at FreeBSD.org
Wed Jun 9 14:31:12 UTC 2010


Author: uqs
Date: Wed Jun  9 14:31:11 2010
New Revision: 208949
URL: http://svn.freebsd.org/changeset/base/208949

Log:
  MFC r208753:
  
  Add required header for isalnum(3) to quench compiler warnings
  
  Forgotten in:   r174678
  Submitted by:   Alexander Best alexbestms at wwu.de
  Approved by:    das
  Approved by:	re (kib)

Modified:
  stable/8/contrib/gdtoa/hexnan.c
Directory Properties:
  stable/8/contrib/gdtoa/   (props changed)

Modified: stable/8/contrib/gdtoa/hexnan.c
==============================================================================
--- stable/8/contrib/gdtoa/hexnan.c	Wed Jun  9 14:30:21 2010	(r208948)
+++ stable/8/contrib/gdtoa/hexnan.c	Wed Jun  9 14:31:11 2010	(r208949)
@@ -31,6 +31,8 @@ THIS SOFTWARE.
 
 /* $FreeBSD$ */
 
+#include <ctype.h>
+
 #include "gdtoaimp.h"
 
  static void


More information about the svn-src-stable-8 mailing list