svn commit: r326585 - head/stand/ficl

Warner Losh imp at FreeBSD.org
Tue Dec 5 21:37:43 UTC 2017


Author: imp
Date: Tue Dec  5 21:37:41 2017
New Revision: 326585
URL: https://svnweb.freebsd.org/changeset/base/326585

Log:
  Include ficl.h before anything else and avoid including anything at
  all if we're not building float.
  
  Sponsored by: Netflix

Modified:
  head/stand/ficl/float.c

Modified: head/stand/ficl/float.c
==============================================================================
--- head/stand/ficl/float.c	Tue Dec  5 21:37:32 2017	(r326584)
+++ head/stand/ficl/float.c	Tue Dec  5 21:37:41 2017	(r326585)
@@ -43,14 +43,14 @@
 
 /* $FreeBSD$ */
 
+#include "ficl.h"
+
+#if FICL_WANT_FLOAT
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
 #include <ctype.h>
 #include <math.h>
-#include "ficl.h"
-
-#if FICL_WANT_FLOAT
 
 /*******************************************************************
 ** Do float addition r1 + r2.


More information about the svn-src-all mailing list