aboutsummaryrefslogtreecommitdiff
path: root/contrib/cvs/src/stack.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/cvs/src/stack.h')
-rw-r--r--contrib/cvs/src/stack.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/contrib/cvs/src/stack.h b/contrib/cvs/src/stack.h
deleted file mode 100644
index 822010bbe4a9..000000000000
--- a/contrib/cvs/src/stack.h
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * Copyright (c) 2004-2005 The Free Software Foundation,
- * Derek Price, and Ximbiot <http://ximbiot.com>.
- *
- * You may distribute under the terms of the GNU General Public License as
- * specified in the README file that comes with the CVS source distribution.
- */
-
-void push PROTO((List *_stack, void *_elem));
-void *pop PROTO((List *_stack));
-void unshift PROTO((List *_stack, void *_elem));
-void *shift PROTO((List *_stack));
-void push_string PROTO((List *_stack, char *_elem));
-char *pop_string PROTO((List *_stack));
-void unshift_string PROTO((List *_stack, char *_elem));
-char *shift_string PROTO((List *_stack));
-int isempty PROTO((List *_stack));