summaryrefslogtreecommitdiff
path: root/regex/utils.h
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>1999-09-20 14:45:37 +0000
committerSVN Migration <svn@php.net>1999-09-20 14:45:37 +0000
commit510f3d96386059d8f2562532492593125c7bba8f (patch)
tree416f4cbd8ecc6d5ca31714ffaa41d72b16495262 /regex/utils.h
parent82c8a9e745f0a968fe7eccb7dc64d73436f80aa7 (diff)
downloadphp-git-PRE_DELAYED_ARRAY_FETCH_PATCH.tar.gz
This commit was manufactured by cvs2svn to create tagPRE_DELAYED_ARRAY_FETCH_PATCH
'PRE_DELAYED_ARRAY_FETCH_PATCH'.
Diffstat (limited to 'regex/utils.h')
-rw-r--r--regex/utils.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/regex/utils.h b/regex/utils.h
deleted file mode 100644
index f271f759b1..0000000000
--- a/regex/utils.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/* utility definitions */
-#ifndef _POSIX2_RE_DUP_MAX
-#define _POSIX2_RE_DUP_MAX 255
-#endif
-
-#define DUPMAX _POSIX2_RE_DUP_MAX /* xxx is this right? */
-#define INFINITY (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