aboutsummaryrefslogtreecommitdiff
path: root/contrib/tcsh/mi.varargs.h
diff options
context:
space:
mode:
authorMark Peek <mp@FreeBSD.org>2009-07-10 21:00:38 +0000
committerMark Peek <mp@FreeBSD.org>2009-07-10 21:00:38 +0000
commitbc49518e16776ae85e579feca2ecc4c0001c64a6 (patch)
treedae2d3ff4ed630baaed92bc0340cb55a8c9b01cd /contrib/tcsh/mi.varargs.h
parent9a5e6371241e3d4a2a5727e73f02896c8ed421a5 (diff)
downloadsrc-bc49518e16776ae85e579feca2ecc4c0001c64a6.tar.gz
src-bc49518e16776ae85e579feca2ecc4c0001c64a6.zip
Flatten vendor/tcsh/dist.
Notes
Notes: svn path=/vendor/tcsh/dist/; revision=195587
Diffstat (limited to 'contrib/tcsh/mi.varargs.h')
-rw-r--r--contrib/tcsh/mi.varargs.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/contrib/tcsh/mi.varargs.h b/contrib/tcsh/mi.varargs.h
deleted file mode 100644
index 0a9dfb5731db..000000000000
--- a/contrib/tcsh/mi.varargs.h
+++ /dev/null
@@ -1,15 +0,0 @@
-/* $Header: /p/tcsh/cvsroot/tcsh/mi.varargs.h,v 1.2 1996/04/26 19:18:39 christos Exp $ */
-/*
- * mi.varargs.h: Correct varargs for minix
- */
-#ifndef _h_mi_varargs
-#define _h_mi_varargs
-
-typedef char *va_list;
-
-#define va_dcl int va_alist;
-#define va_start(p) (p) = (va_list) &va_alist;
-#define va_arg(p,type) ( (type *) ((p)+=sizeof(type)) )[-1]
-#define va_end(p)
-
-#endif /* _h_mi_varargs */