summaryrefslogtreecommitdiff
path: root/setedit/include/ced_pcre.h
diff options
context:
space:
mode:
Diffstat (limited to 'setedit/include/ced_pcre.h')
-rw-r--r--setedit/include/ced_pcre.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/setedit/include/ced_pcre.h b/setedit/include/ced_pcre.h
deleted file mode 100644
index 3a679ad..0000000
--- a/setedit/include/ced_pcre.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/* Copyright (C) 2004 by Salvador E. Tropea (SET),
- see copyrigh file for details */
-
-// PCRE support
-#ifndef SUP_PCRE
- #if defined(HAVE_PCRE_LIB)
- #define SUP_PCRE 1
- #else
- #define SUP_PCRE 0
- #endif
-#endif
-
-#if !SUP_PCRE
- // Just to avoid errors
- typedef void pcre;
- extern void *(*pcre_malloc)(size_t a);
- extern void (*pcre_free)(void *p);
-#else
- #define STATIC
- #include PCRE_HEADER_NAME
- #undef STATIC
-#endif
-
-