summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-12-02 09:58:31 +0000
committerJim Meyering <jim@meyering.net>2000-12-02 09:58:31 +0000
commit627dac6c079d222ced66c60b68304d00ed4943c9 (patch)
treef63c92cb27c6118e495737e654f8b655ee7ce31e /lib
parent0742bc284e44fc08fd9a15777bd6c60975863481 (diff)
downloadcoreutils-627dac6c079d222ced66c60b68304d00ed4943c9.tar.xz
Include <config.h> before any system include file.
Diffstat (limited to 'lib')
-rw-r--r--lib/memrchr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/memrchr.c b/lib/memrchr.c
index 9ee93163f..4a3141e20 100644
--- a/lib/memrchr.c
+++ b/lib/memrchr.c
@@ -21,12 +21,12 @@
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#include <stdlib.h>
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
+#include <stdlib.h>
+
#undef __ptr_t
#if defined (__cplusplus) || (defined (__STDC__) && __STDC__)
# define __ptr_t void *