diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-04-08 01:54:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-04-08 01:54:27 +0000 |
commit | afe3710f8b7ae6dc3b92ea086fe4d93b2ff3a060 (patch) | |
tree | 3adbe4d0953771d23f19018c4d9e5554bb1b4a0e /usr.bin/patch | |
parent | 5136a1c3e86827f48bb593fb4a531337d2be74e1 (diff) |
Strcat and Strcpy are no longer used
Diffstat (limited to 'usr.bin/patch')
-rw-r--r-- | usr.bin/patch/common.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/patch/common.h b/usr.bin/patch/common.h index dd1b812fc8a..5c642c77e3b 100644 --- a/usr.bin/patch/common.h +++ b/usr.bin/patch/common.h @@ -1,4 +1,4 @@ -/* $OpenBSD: common.h,v 1.10 1999/01/03 05:33:48 millert Exp $ */ +/* $OpenBSD: common.h,v 1.11 2003/04/08 01:54:26 deraadt Exp $ */ #define DEBUGGING @@ -17,8 +17,6 @@ #define Fclose (void)fclose #define Fflush (void)fflush #define Snprintf (void)snprintf -#define Strcpy (void)strcpy -#define Strcat (void)strcat /* NeXT declares malloc and realloc incompatibly from us in some of these files. Temporarily redefine them to prevent errors. */ |