diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-10-18 03:37:12 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-10-18 03:37:12 +0000 |
commit | 336031efaf37038aec514de88cc3ed6ac651bea9 (patch) | |
tree | 6e7eaec5ac8b729546276d6a0932387996c9e92c /gnu/usr.bin/cvs/vms/misc.h | |
parent | c99a600e0a1fec1e87fd19470c2c4cf7c8ce36ed (diff) |
New release from Cyclic Software
Diffstat (limited to 'gnu/usr.bin/cvs/vms/misc.h')
-rw-r--r-- | gnu/usr.bin/cvs/vms/misc.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/usr.bin/cvs/vms/misc.h b/gnu/usr.bin/cvs/vms/misc.h new file mode 100644 index 00000000000..0494b16698e --- /dev/null +++ b/gnu/usr.bin/cvs/vms/misc.h @@ -0,0 +1,40 @@ +/* + * Copyright © 1994 the Free Software Foundation, Inc. + * + * Author: Richard Levitte (levitte@e.kth.se) + * + * This file is a part of GNU VMSLIB, the GNU library for porting GNU + * software to VMS. + * + * GNU VMSLIB is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * GNU VMSLIB is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GNU VMSLIB; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +void fatal (); +void *xmalloc (); +void *xrealloc (); +void x_free(); +/* This is a trick, because the linker wants uppercase symbols, and in + that case, xfree is confused with Xfree, which is bad. */ +#define xfree x_free + +/* + * Some string utilities. + */ +char *downcase (); +char *strdup (); +char *strndup (); + +int fixpath (); +char *argvconcat (); |