summaryrefslogtreecommitdiff
path: root/src/mesa/main/glheader.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-02-12 15:55:34 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-02-12 15:55:34 +0000
commite39ed58116bec6c938cbda42e2021ff29823a122 (patch)
treee34856d0ee61ca6d8ac64bd3091000cf01b996be /src/mesa/main/glheader.h
parent59d6da5365c876ba18a66cd51ed52b0e1d96704e (diff)
always include <float.h>
Diffstat (limited to 'src/mesa/main/glheader.h')
-rw-r--r--src/mesa/main/glheader.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/main/glheader.h b/src/mesa/main/glheader.h
index 7041f7985a..afe9e3a763 100644
--- a/src/mesa/main/glheader.h
+++ b/src/mesa/main/glheader.h
@@ -1,10 +1,10 @@
-/* $Id: glheader.h,v 1.3 1999/11/12 18:23:47 brianp Exp $ */
+/* $Id: glheader.h,v 1.4 2000/02/12 15:55:34 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 3.3
*
- * Copyright (C) 1999 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -47,13 +47,14 @@
#else
#include <assert.h>
#include <ctype.h>
-#include <float.h>
#include <math.h>
#include <limits.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#endif
+#include <float.h>
+
#ifdef HAVE_CONFIG_H
#include "conf.h"