summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2003-05-18 10:24:13 +0000
committerAndreas Gruenbacher <agruen@suse.de>2009-03-19 01:43:37 +0100
commit9e7fd8cb42a07d2b9c1a507e2d25eaf52adf3115 (patch)
treea761d2947ce49fdb98644359d42f0abb5fba3bc8
parent529748febcad90b099bd4bfcb5c47de0e1c725ae (diff)
downloadpatch-9e7fd8cb42a07d2b9c1a507e2d25eaf52adf3115.tar.gz
(FILESYSTEM_PREFIX_LEN, ISSLASH): Remove; now done by 'configure'. (PROGRAM_NAME): Remove; now done by 'configure' as PACKAGE_NAME.
-rw-r--r--common.h18
1 files changed, 3 insertions, 15 deletions
diff --git a/common.h b/common.h
index 5fd9907..667ca62 100644
--- a/common.h
+++ b/common.h
@@ -1,11 +1,11 @@
/* common definitions for `patch' */
-/* $Id: common.h,v 1.32 2002/05/28 07:12:03 eggert Exp $ */
+/* $Id: common.h,v 1.33 2003/05/18 08:24:13 eggert Exp $ */
/* Copyright (C) 1986, 1988 Larry Wall
- Copyright (C) 1990, 1991, 1992, 1993, 1997, 1998, 1999, 2002 Free
- Software Foundation, Inc.
+ Copyright (C) 1990, 1991, 1992, 1993, 1997, 1998, 1999, 2002, 2003
+ Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -120,15 +120,6 @@
#endif
-#ifndef FILESYSTEM_PREFIX_LEN
-#define FILESYSTEM_PREFIX_LEN(f) 0
-#endif
-
-#ifndef ISSLASH
-#define ISSLASH(c) ((c) == '/')
-#endif
-
-
/* constants */
/* AIX predefines these. */
@@ -316,6 +307,3 @@ void *realloc ();
#ifndef TTY_DEVICE
#define TTY_DEVICE "/dev/tty"
#endif
-
-/* The official name of this program (e.g., no `g' prefix). */
-#define PROGRAM_NAME "patch"