summaryrefslogtreecommitdiff
path: root/x2p/util.h
diff options
context:
space:
mode:
authorLeon Timmermans <fawaka@gmail.com>2014-05-21 13:56:54 +0200
committerLeon Timmermans <fawaka@gmail.com>2014-05-29 15:01:50 +0200
commite5a8a0fbd70ee31a016b7cf1c4b8c07839c6cf97 (patch)
treeb76deaf20debae69504ec40cb5e3dccb759b2992 /x2p/util.h
parentc02d599bfd636e89753a6ed00b136798dc1661c3 (diff)
downloadperl-e5a8a0fbd70ee31a016b7cf1c4b8c07839c6cf97.tar.gz
Remove x2p
This removes find2perl, s2p and a2p from core. They have all been released to CPAN as separate distributions.
Diffstat (limited to 'x2p/util.h')
-rw-r--r--x2p/util.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/x2p/util.h b/x2p/util.h
deleted file mode 100644
index 3330a60957..0000000000
--- a/x2p/util.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/* util.h
- *
- * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2005
- * by Larry Wall and others
- *
- * You may distribute under the terms of either the GNU General Public
- * License or the Artistic License, as specified in the README file.
- */
-
-/* is the string for makedir a directory name or a filename? */
-
-#define fatal Myfatal
-
-#define MD_DIR 0
-#define MD_FILE 1
-
-#ifdef SETUIDGID
- int eaccess();
-#endif
-
-char * cpy2 ( char *to, char *from, int delim );
-char * cpytill ( char *to, char *from, int delim );
-void growstr ( char **strptr, int *curlen, int newlen );
-char * instr ( char *big, const char *little );
-char * savestr ( const char *str );
-void fatal ( const char *pat, ... );
-void warn ( const char *pat, ... );
-int prewalk ( int numit, int level, int node, int *numericptr );
-
-Malloc_t safemalloc (MEM_SIZE nbytes);
-Malloc_t saferealloc (Malloc_t where, MEM_SIZE nbytes);
-Free_t safefree (Malloc_t where);