Imported Debian patch 2.5.2p1-1
[debian/amanda] / regex-src / utils.h
diff --git a/regex-src/utils.h b/regex-src/utils.h
deleted file mode 100644 (file)
index 539d645..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef REGEX_UTILS_H
-#define REGEX_UTILS_H
-
-/* utility definitions */
-#ifdef _POSIX2_RE_DUP_MAX
-#define        DUPMAX  _POSIX2_RE_DUP_MAX
-#else
-#define        DUPMAX  255
-#endif
-#define        REINFINITY      (DUPMAX + 1)
-#define        NC              (CHAR_MAX - CHAR_MIN + 1)
-typedef unsigned char uch;
-
-/* switch off assertions (if not already off) if no REDEBUG */
-#ifndef REDEBUG
-#ifndef NDEBUG
-#define        NDEBUG  /* no assertions please */
-#endif
-#endif
-#include <assert.h>
-/* for old systems with bcopy() but no memmove() */
-#ifdef USEBCOPY
-#define        memmove(d, s, c)        bcopy(s, d, c)
-#endif
-
-#endif /* !REGEX_UTILS_H */