summaryrefslogtreecommitdiffstats
path: root/bin/csh/csh.h
diff options
context:
space:
mode:
Diffstat (limited to 'bin/csh/csh.h')
-rw-r--r--bin/csh/csh.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/bin/csh/csh.h b/bin/csh/csh.h
index 6e257d2..f88f622 100644
--- a/bin/csh/csh.h
+++ b/bin/csh/csh.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)csh.h 8.1 (Berkeley) 5/31/93
- * $Id: csh.h,v 1.4 1997/02/22 14:01:41 peter Exp $
+ * $Id: csh.h,v 1.5 1997/08/07 21:42:04 steve Exp $
*/
/*
@@ -187,8 +187,8 @@ jmp_buf reslab;
#define setexit() (setjmp(reslab))
#define reset() longjmp(reslab, 1)
/* Should use structure assignment here */
-#define getexit(a) memcpy(((char *)(a)), (char *)reslab, sizeof reslab)
-#define resexit(a) memcpy((char *)reslab, (char *)(a), sizeof reslab)
+#define getexit(a) memmove((char *)(a), (char *)reslab, sizeof reslab)
+#define resexit(a) memmove((char *)reslab, (char *)(a), sizeof reslab)
Char *gointr; /* Label for an onintr transfer */
@@ -421,8 +421,6 @@ struct varent {
#define v_right v_link[1]
#define v_parent v_link[2]
-struct varent *adrof1();
-
#define adrof(v) adrof1(v, &shvhed)
#define value(v) value1(v, &shvhed)
OpenPOWER on IntegriCloud