summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-03-28 15:20:32 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-03-28 15:20:32 +0000
commit56f61c7d6f2a42ea14c77557db8b757b810e3a93 (patch)
tree955aaa6423dbcf25f22808b128ea78088fb153fe /cpukit/libmisc
parentReorder includes. (diff)
downloadrtems-56f61c7d6f2a42ea14c77557db8b757b810e3a93.tar.bz2
Add HAVE_CONFIG_H support to let files receive configure defines.
Diffstat (limited to 'cpukit/libmisc')
-rw-r--r--cpukit/libmisc/stringto/stringtodouble.c4
-rw-r--r--cpukit/libmisc/stringto/stringtofloat.c4
-rw-r--r--cpukit/libmisc/stringto/stringtoint.c4
-rw-r--r--cpukit/libmisc/stringto/stringtolong.c4
-rw-r--r--cpukit/libmisc/stringto/stringtolonglong.c4
-rw-r--r--cpukit/libmisc/stringto/stringtopointer.c4
-rw-r--r--cpukit/libmisc/stringto/stringtounsignedchar.c4
-rw-r--r--cpukit/libmisc/stringto/stringtounsignedint.c4
-rw-r--r--cpukit/libmisc/stringto/stringtounsignedlong.c4
-rw-r--r--cpukit/libmisc/stringto/stringtounsignedlonglong.c4
10 files changed, 40 insertions, 0 deletions
diff --git a/cpukit/libmisc/stringto/stringtodouble.c b/cpukit/libmisc/stringto/stringtodouble.c
index 080b53c60d..52ea630bb7 100644
--- a/cpukit/libmisc/stringto/stringtodouble.c
+++ b/cpukit/libmisc/stringto/stringtodouble.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/*
* Instantiate an error checking wrapper for strtod (double)
*/
diff --git a/cpukit/libmisc/stringto/stringtofloat.c b/cpukit/libmisc/stringto/stringtofloat.c
index 2de118278f..d5edb634c5 100644
--- a/cpukit/libmisc/stringto/stringtofloat.c
+++ b/cpukit/libmisc/stringto/stringtofloat.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/*
* Instantiate an error checking wrapper for strtof (float)
*/
diff --git a/cpukit/libmisc/stringto/stringtoint.c b/cpukit/libmisc/stringto/stringtoint.c
index 0e87a3357b..c07748ab00 100644
--- a/cpukit/libmisc/stringto/stringtoint.c
+++ b/cpukit/libmisc/stringto/stringtoint.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/*
* Instantiate an error checking wrapper for strtol (int)
*/
diff --git a/cpukit/libmisc/stringto/stringtolong.c b/cpukit/libmisc/stringto/stringtolong.c
index fd8234e431..8228888312 100644
--- a/cpukit/libmisc/stringto/stringtolong.c
+++ b/cpukit/libmisc/stringto/stringtolong.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/*
* Instantiate an error checking wrapper for strtol (long)
*/
diff --git a/cpukit/libmisc/stringto/stringtolonglong.c b/cpukit/libmisc/stringto/stringtolonglong.c
index 390612e211..ada88b66fc 100644
--- a/cpukit/libmisc/stringto/stringtolonglong.c
+++ b/cpukit/libmisc/stringto/stringtolonglong.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/*
* Instantiate an error checking wrapper for strtoll (long long)
*/
diff --git a/cpukit/libmisc/stringto/stringtopointer.c b/cpukit/libmisc/stringto/stringtopointer.c
index ca1e480d2d..23e59fa8c5 100644
--- a/cpukit/libmisc/stringto/stringtopointer.c
+++ b/cpukit/libmisc/stringto/stringtopointer.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/*
* Instantiate an error checking wrapper for strtoul which is
* used to input a (void *)
diff --git a/cpukit/libmisc/stringto/stringtounsignedchar.c b/cpukit/libmisc/stringto/stringtounsignedchar.c
index b9a3e983bd..e1f563b1af 100644
--- a/cpukit/libmisc/stringto/stringtounsignedchar.c
+++ b/cpukit/libmisc/stringto/stringtounsignedchar.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/*
* Instantiate an error checking wrapper for strtol (unsigned char)
*/
diff --git a/cpukit/libmisc/stringto/stringtounsignedint.c b/cpukit/libmisc/stringto/stringtounsignedint.c
index 82f45abe5d..681a197d14 100644
--- a/cpukit/libmisc/stringto/stringtounsignedint.c
+++ b/cpukit/libmisc/stringto/stringtounsignedint.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/*
* Instantiate an error checking wrapper for strtoul (unsigned int)
*/
diff --git a/cpukit/libmisc/stringto/stringtounsignedlong.c b/cpukit/libmisc/stringto/stringtounsignedlong.c
index 0a66e88ee4..918b665a9a 100644
--- a/cpukit/libmisc/stringto/stringtounsignedlong.c
+++ b/cpukit/libmisc/stringto/stringtounsignedlong.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/*
* Instantiate an error checking wrapper for strtoul (unsigned long)
*/
diff --git a/cpukit/libmisc/stringto/stringtounsignedlonglong.c b/cpukit/libmisc/stringto/stringtounsignedlonglong.c
index 6f79c3d874..7821902662 100644
--- a/cpukit/libmisc/stringto/stringtounsignedlonglong.c
+++ b/cpukit/libmisc/stringto/stringtounsignedlonglong.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
/*
* Instantiate an error checking wrapper for strtoull (unsigned long long)
*/