summaryrefslogtreecommitdiff
path: root/bin/csh/csh.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-04-15 01:17:34 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-04-15 01:17:34 +0000
commitab18176e944fd41f79842d864b42cfd2fefff1fd (patch)
tree34d6070bb6c8cec8b8b8991838b7dcab7dcdedd1 /bin/csh/csh.h
parent687634b083136e5444e8d1a056fcf2acd7fccf0e (diff)
remove final call to Strcpy/s_strcpy; some help from tedu
Diffstat (limited to 'bin/csh/csh.h')
-rw-r--r--bin/csh/csh.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/csh/csh.h b/bin/csh/csh.h
index b25d127733c..f83e7d72409 100644
--- a/bin/csh/csh.h
+++ b/bin/csh/csh.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: csh.h,v 1.10 2003/04/08 01:46:53 deraadt Exp $ */
+/* $OpenBSD: csh.h,v 1.11 2003/04/15 01:17:33 deraadt Exp $ */
/* $NetBSD: csh.h,v 1.9 1995/03/21 09:02:40 cgd Exp $ */
/*-
@@ -491,7 +491,6 @@ Char HISTSUB; /* auto-substitute character */
#define Strrchr(a, b) strrchr(a, b)
#define Strlcat(a, b, l) strlcat(a, b, l)
#define Strncat(a, b, c) strncat(a, b, c)
-#define Strcpy(a, b) strcpy(a, b)
#define Strlcpy(a, b, l) strlcpy(a, b, l)
#define Strncpy(a, b, c) strncpy(a, b, c)
#define Strlen(a) strlen(a)
@@ -512,7 +511,6 @@ Char HISTSUB; /* auto-substitute character */
#define Strrchr(a, b) s_strrchr(a, b)
#define Strlcat(a, b, l) s_strlcat(a, b, l)
#define Strncat(a, b, c) s_strncat(a, b, c)
-#define Strcpy(a, b) s_strcpy(a, b)
#define Strlcpy(a, b, l) s_strlcpy(a, b, l)
#define Strncpy(a, b, c) s_strncpy(a, b, c)
#define Strlen(a) s_strlen(a)