summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/remove.c6
-rw-r--r--src/system.h8
2 files changed, 7 insertions, 7 deletions
diff --git a/src/remove.c b/src/remove.c
index 49fa8acc1..9b887021d 100644
--- a/src/remove.c
+++ b/src/remove.c
@@ -26,12 +26,6 @@
#include <sys/types.h>
#include <assert.h>
-#if HAVE_STDBOOL_H
-# include <stdbool.h>
-#else
-typedef enum {false = 0, true = 1} bool;
-#endif
-
#include "save-cwd.h"
#include "system.h"
#include "dirname.h"
diff --git a/src/system.h b/src/system.h
index 582fd7c51..95c6324b3 100644
--- a/src/system.h
+++ b/src/system.h
@@ -1,5 +1,5 @@
/* system-dependent definitions for fileutils, textutils, and sh-utils packages.
- Copyright (C) 1989, 1991-2000 Free Software Foundation, Inc.
+ Copyright (C) 1989, 1991-2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -116,6 +116,12 @@ struct utimbuf
extern int errno;
#endif
+#if HAVE_STDBOOL_H
+# include <stdbool.h>
+#else
+typedef enum {false = 0, true = 1} bool;
+#endif
+
#if HAVE_STDLIB_H
# define getopt system_getopt
# include <stdlib.h>