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. _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"